diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-07-23 13:49:16 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-07-25 12:00:52 -0700 |
commit | ff85334375c6733c6116ea3686f128b4a11f33e7 (patch) | |
tree | 771b9b39cd329ca85eb3dc4be8dd79850db95f84 | |
parent | 165e9df19567ec0b6abee1ee2c26027e6d7aa7bf (diff) | |
download | ffmpeg-ff85334375c6733c6116ea3686f128b4a11f33e7.tar.gz |
mpegvideo: Drop unused MPEG_BUF_SIZE and CHROMA_444 defines
-rw-r--r-- | libavcodec/mpegvideo.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index ec1577a00e..8233d6f3ab 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -60,8 +60,6 @@ enum OutputFormat { FMT_MJPEG, }; -#define MPEG_BUF_SIZE (16 * 1024) - #define QMAT_SHIFT_MMX 16 #define QMAT_SHIFT 22 @@ -589,7 +587,6 @@ typedef struct MpegEncContext { int chroma_format; #define CHROMA_420 1 #define CHROMA_422 2 -#define CHROMA_444 3 int chroma_x_shift;//depend on pix_format, that depend on chroma_format int chroma_y_shift; |