Commit 83e3516e authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '925b80d6'

* commit '925b80d6':
  mpegvideo: Move OutFormat enum to mpegutils.h
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 3244a176 925b80d6
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
#include "mpeg_er.h" #include "mpeg_er.h"
#include "mpeg4video.h" #include "mpeg4video.h"
#include "mpeg4video_parser.h" #include "mpeg4video_parser.h"
#include "mpegutils.h"
#include "mpegvideo.h" #include "mpegvideo.h"
#include "msmpeg4.h" #include "msmpeg4.h"
#include "qpeldsp.h" #include "qpeldsp.h"
......
...@@ -115,6 +115,14 @@ ...@@ -115,6 +115,14 @@
#define CANDIDATE_MB_TYPE_DIRECT0 (1 << 12) #define CANDIDATE_MB_TYPE_DIRECT0 (1 << 12)
enum OutputFormat {
FMT_MPEG1,
FMT_H261,
FMT_H263,
FMT_MJPEG,
};
/** /**
* Draw a horizontal band if supported. * Draw a horizontal band if supported.
* *
......
...@@ -47,6 +47,7 @@ ...@@ -47,6 +47,7 @@
#include "put_bits.h" #include "put_bits.h"
#include "ratecontrol.h" #include "ratecontrol.h"
#include "parser.h" #include "parser.h"
#include "mpegutils.h"
#include "mpeg12data.h" #include "mpeg12data.h"
#include "qpeldsp.h" #include "qpeldsp.h"
#include "thread.h" #include "thread.h"
...@@ -57,13 +58,6 @@ ...@@ -57,13 +58,6 @@
#define FRAME_SKIPPED 100 ///< return value for header parsers if frame is not coded #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_FCODE 7
#define MAX_THREADS 32 #define MAX_THREADS 32
......
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
#include "h263.h" #include "h263.h"
#include "internal.h" #include "internal.h"
#include "mpeg_er.h" #include "mpeg_er.h"
#include "mpegutils.h"
#include "mpegvideo.h" #include "mpegvideo.h"
#include "mpeg4video.h" #include "mpeg4video.h"
#include "mpegvideodata.h" #include "mpegvideodata.h"
......
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#include "avcodec.h" #include "avcodec.h"
#include "idctdsp.h" #include "idctdsp.h"
#include "mpegutils.h"
#include "mpegvideo.h" #include "mpegvideo.h"
#include "msmpeg4data.h" #include "msmpeg4data.h"
#include "simple_idct.h" #include "simple_idct.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment