Commit 47e5eaf8 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'e89247de'

* commit 'e89247de':
  mpeg4videodec: replace MpegEncContext.reduced_res_vop with a local variable
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents f4c28aea e89247de
...@@ -1984,13 +1984,11 @@ no_cplx_est: ...@@ -1984,13 +1984,11 @@ no_cplx_est:
skip_bits(gb, 2); /* requested upstream message type */ skip_bits(gb, 2); /* requested upstream message type */
skip_bits1(gb); /* newpred segment type */ skip_bits1(gb); /* newpred segment type */
} }
s->reduced_res_vop = get_bits1(gb); if (get_bits1(gb)) // reduced_res_vop
if (s->reduced_res_vop)
av_log(s->avctx, AV_LOG_ERROR, av_log(s->avctx, AV_LOG_ERROR,
"reduced resolution VOP not supported\n"); "reduced resolution VOP not supported\n");
} else { } else {
s->new_pred = 0; s->new_pred = 0;
s->reduced_res_vop = 0;
} }
s->scalability = get_bits1(gb); s->scalability = get_bits1(gb);
......
...@@ -609,7 +609,6 @@ typedef struct MpegEncContext { ...@@ -609,7 +609,6 @@ typedef struct MpegEncContext {
int hierachy_type; int hierachy_type;
int enhancement_type; int enhancement_type;
int new_pred; int new_pred;
int reduced_res_vop;
int aspect_ratio_info; //FIXME remove int aspect_ratio_info; //FIXME remove
int sprite_warping_accuracy; int sprite_warping_accuracy;
int data_partitioning; ///< data partitioning flag from header int data_partitioning; ///< data partitioning flag from header
......
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