diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-05-31 15:49:55 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-06-08 12:39:42 +0100 |
commit | 925b80d64029d41962e5998d7d901226c3a9baea (patch) | |
tree | 83a31b30fc6b944669e5b06adb5164ecb8b200e3 /libavcodec/mpegvideo.h | |
parent | 9bb11be0e5a75782c3139ad058c2b571499aa37d (diff) | |
download | ffmpeg-925b80d64029d41962e5998d7d901226c3a9baea.tar.gz |
mpegvideo: Move OutFormat enum to mpegutils.h
It is necessary to avoid circular header dependencies.
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index b8740a27c0..d5e14f7c46 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -46,6 +46,7 @@ #include "put_bits.h" #include "ratecontrol.h" #include "parser.h" +#include "mpegutils.h" #include "mpeg12data.h" #include "qpeldsp.h" #include "thread.h" @@ -55,13 +56,6 @@ #define FRAME_SKIPPED 100 ///< return value for header parsers if frame is not coded -enum OutputFormat { - FMT_MPEG1, - FMT_H261, - FMT_H263, - FMT_MJPEG, -}; - #define MAX_FCODE 7 #define MAX_THREADS 16 |