diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-09-05 05:30:08 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-09-05 05:30:08 +0000 |
commit | c92a30bb061036def498e48e11d454a61e0f3b1f (patch) | |
tree | cab763e2223c66b8ec61eaea881683aeafe64fbf /libavcodec/h264data.h | |
parent | 6a1aa752f0d732fac4ec68f71c4c871b2f823bf6 (diff) | |
download | ffmpeg-c92a30bb061036def498e48e11d454a61e0f3b1f.tar.gz |
Move H.264 intra prediction functions into their own context
Originally committed as revision 10397 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264data.h')
-rw-r--r-- | libavcodec/h264data.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libavcodec/h264data.h b/libavcodec/h264data.h index eb13b4cb77..0165e7a789 100644 --- a/libavcodec/h264data.h +++ b/libavcodec/h264data.h @@ -33,29 +33,6 @@ #include "mpegvideo.h" #include "rational.h" -#define VERT_PRED 0 -#define HOR_PRED 1 -#define DC_PRED 2 -#define DIAG_DOWN_LEFT_PRED 3 -#define DIAG_DOWN_RIGHT_PRED 4 -#define VERT_RIGHT_PRED 5 -#define HOR_DOWN_PRED 6 -#define VERT_LEFT_PRED 7 -#define HOR_UP_PRED 8 - -#define LEFT_DC_PRED 9 -#define TOP_DC_PRED 10 -#define DC_128_PRED 11 - - -#define DC_PRED8x8 0 -#define HOR_PRED8x8 1 -#define VERT_PRED8x8 2 -#define PLANE_PRED8x8 3 - -#define LEFT_DC_PRED8x8 4 -#define TOP_DC_PRED8x8 5 -#define DC_128_PRED8x8 6 #define EXTENDED_SAR 255 |