Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-11-26 13:41:57 +0400
committerAnton Khirnov <anton@khirnov.net>2013-11-29 17:19:47 +0400
commit35e0833d410e31d9fd35695ad798c5d13de2af58 (patch)
tree8218629859b4cc88c3344f66de5ba25ab4b28581 /libavcodec/mpeg4video.h
parent95fd52c11bff1aad93a29aed3bd5472bd2981d1f (diff)
mpeg4videodec: add a mpeg4-specific private context.
Diffstat (limited to 'libavcodec/mpeg4video.h')
-rw-r--r--libavcodec/mpeg4video.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mpeg4video.h b/libavcodec/mpeg4video.h
index c22fbfd34d..443fc71f22 100644
--- a/libavcodec/mpeg4video.h
+++ b/libavcodec/mpeg4video.h
@@ -59,6 +59,10 @@
#define VISUAL_OBJ_STARTCODE 0x1B5
#define VOP_STARTCODE 0x1B6
+typedef struct Mpeg4DecContext {
+ MpegEncContext m;
+} Mpeg4DecContext;
+
/* dc encoding for mpeg4 */
extern const uint8_t ff_mpeg4_DCtab_lum[13][2];
extern const uint8_t ff_mpeg4_DCtab_chrom[13][2];