comparison jfdctfst.c @ 6763:f7cbb7733146 libavcodec

Use full path for #includes from another directory.
author diego
date Fri, 09 May 2008 11:56:36 +0000
parents d6f83e2f8804
children e9d9d946f213
comparison
equal deleted inserted replaced
6762:99966715fe75 6763:f7cbb7733146
68 * Independent JPEG Group's fast AAN dct. 68 * Independent JPEG Group's fast AAN dct.
69 */ 69 */
70 70
71 #include <stdlib.h> 71 #include <stdlib.h>
72 #include <stdio.h> 72 #include <stdio.h>
73 #include "common.h" 73 #include "libavutil/common.h"
74 #include "dsputil.h" 74 #include "dsputil.h"
75 75
76 #define DCTSIZE 8 76 #define DCTSIZE 8
77 #define GLOBAL(x) x 77 #define GLOBAL(x) x
78 #define RIGHT_SHIFT(x, n) ((x) >> (n)) 78 #define RIGHT_SHIFT(x, n) ((x) >> (n))