diff options
Diffstat (limited to 'libavcodec/colorspace.h')
-rw-r--r-- | libavcodec/colorspace.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/colorspace.h b/libavcodec/colorspace.h index 9d89d6d..7221517 100644 --- a/libavcodec/colorspace.h +++ b/libavcodec/colorspace.h @@ -24,8 +24,8 @@ * Various defines for YUV<->RGB conversion */ -#ifndef FFMPEG_COLORSPACE_H -#define FFMPEG_COLORSPACE_H +#ifndef AVCODEC_COLORSPACE_H +#define AVCODEC_COLORSPACE_H #define SCALEBITS 10 #define ONE_HALF (1 << (SCALEBITS - 1)) @@ -108,4 +108,4 @@ static inline int C_JPEG_TO_CCIR(int y) { (((FIX(0.50000*224.0/255.0) * r1 - FIX(0.41869*224.0/255.0) * g1 - \ FIX(0.08131*224.0/255.0) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128) -#endif /* FFMPEG_COLORSPACE_H */ +#endif /* AVCODEC_COLORSPACE_H */ |