[FFmpeg-cvslog] mpeg4videodec: move enhancement_type from MpegEncContext to Mpeg4DecContext

Anton Khirnov git at videolan.org
Sat Nov 30 04:22:35 CET 2013


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Tue Nov 26 14:34:52 2013 +0100| [6e81597d5a89f64dfab5c7e99e46b4355139e324] | committer: Anton Khirnov

mpeg4videodec: move enhancement_type from MpegEncContext to Mpeg4DecContext

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6e81597d5a89f64dfab5c7e99e46b4355139e324
---

 libavcodec/mpeg4video.h    |    1 +
 libavcodec/mpeg4videodec.c |    4 ++--
 libavcodec/mpegvideo.h     |    1 -
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/mpeg4video.h b/libavcodec/mpeg4video.h
index 6a143e1..6337a08 100644
--- a/libavcodec/mpeg4video.h
+++ b/libavcodec/mpeg4video.h
@@ -74,6 +74,7 @@ typedef struct Mpeg4DecContext {
     int t_frame;
 
     int new_pred;
+    int enhancement_type;
 
     /* bug workarounds */
     int divx_version;
diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c
index 32ffbb8..114d245 100644
--- a/libavcodec/mpeg4videodec.c
+++ b/libavcodec/mpeg4videodec.c
@@ -1969,7 +1969,7 @@ no_cplx_est:
             h_sampling_factor_m = get_bits(gb, 5);
             v_sampling_factor_n = get_bits(gb, 5);
             v_sampling_factor_m = get_bits(gb, 5);
-            s->enhancement_type = get_bits1(gb);
+            ctx->enhancement_type = get_bits1(gb);
 
             if (h_sampling_factor_n == 0 || h_sampling_factor_m == 0 ||
                 v_sampling_factor_n == 0 || v_sampling_factor_m == 0) {
@@ -2253,7 +2253,7 @@ static int decode_vop_header(Mpeg4DecContext *ctx, GetBitContext *gb)
             if (ctx->shape != RECT_SHAPE && s->pict_type != AV_PICTURE_TYPE_I)
                 skip_bits1(gb);  // vop shape coding type
         } else {
-            if (s->enhancement_type) {
+            if (ctx->enhancement_type) {
                 int load_backward_shape = get_bits1(gb);
                 if (load_backward_shape)
                     av_log(s->avctx, AV_LOG_ERROR,
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index 97a3a72..55e61da 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -590,7 +590,6 @@ typedef struct MpegEncContext {
     int quant_precision;
     int quarter_sample;              ///< 1->qpel, 0->half pel ME/MC
     int scalability;
-    int enhancement_type;
     int aspect_ratio_info; //FIXME remove
     int sprite_warping_accuracy;
     int data_partitioning;           ///< data partitioning flag from header



More information about the ffmpeg-cvslog mailing list