comparison jfdctint.c @ 1106:1e39f273ecd6 libavcodec

per file doxy
author michaelni
date Thu, 06 Mar 2003 11:32:04 +0000
parents b32afefe7d33
children e08df4d22d27
comparison
equal deleted inserted replaced
1105:b773f9d23236 1106:1e39f273ecd6
21 * The advantage of this method is that no data path contains more than one 21 * The advantage of this method is that no data path contains more than one
22 * multiplication; this allows a very simple and accurate implementation in 22 * multiplication; this allows a very simple and accurate implementation in
23 * scaled fixed-point arithmetic, with a minimal number of shifts. 23 * scaled fixed-point arithmetic, with a minimal number of shifts.
24 */ 24 */
25 25
26 /**
27 * @file jfdctint.c
28 * Independent JPEG Group's slow & accurate dct.
29 */
30
26 #include <stdlib.h> 31 #include <stdlib.h>
27 #include <stdio.h> 32 #include <stdio.h>
28 #include "common.h" 33 #include "common.h"
29 #include "dsputil.h" 34 #include "dsputil.h"
30 35