Skip to content

Commit

Permalink
Merge commit '8cebc9eaac8631adb23dd1e46c37ad8474139a07'
Browse files Browse the repository at this point in the history
* commit '8cebc9eaac8631adb23dd1e46c37ad8474139a07':
  mpeg4videodec: remove a write-only variable from MpegEncContext

Merged-by: Michael Niedermayer <michaelni@gmx.at>
  • Loading branch information
michaelni committed Nov 30, 2013
2 parents 0cea39f + 8cebc9e commit f4c28ae
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion libavcodec/mpeg4videodec.c
Expand Up @@ -1826,7 +1826,7 @@ static int decode_vol_header(Mpeg4DecContext *ctx, GetBitContext *gb)
s->sprite_warping_accuracy = get_bits(gb, 2);
s->sprite_brightness_change = get_bits1(gb);
if (ctx->vol_sprite_usage == STATIC_SPRITE)
s->low_latency_sprite = get_bits1(gb);
skip_bits1(gb); // low_latency_sprite
}
// FIXME sadct disable bit if verid!=1 && shape not rect

Expand Down
1 change: 0 additions & 1 deletion libavcodec/mpegvideo.h
Expand Up @@ -612,7 +612,6 @@ typedef struct MpegEncContext {
int reduced_res_vop;
int aspect_ratio_info; //FIXME remove
int sprite_warping_accuracy;
int low_latency_sprite;
int data_partitioning; ///< data partitioning flag from header
int partitioned_frame; ///< is current frame partitioned
int low_delay; ///< no reordering needed / has no b-frames
Expand Down

0 comments on commit f4c28ae

Please sign in to comment.