diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-12-07 10:25:27 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-12-09 13:36:11 +0100 |
commit | ba0c8981200df2ac828df3db981a8181b0793e5b (patch) | |
tree | a2706feb843be63cdae92dd2bba717486000ff22 /libavcodec/vc1dec.c | |
parent | 1dd1c1c884b2038291fdabf3916b0a3f88ac6411 (diff) | |
download | ffmpeg-ba0c8981200df2ac828df3db981a8181b0793e5b.tar.gz |
cosmetics: Fix dropable --> droppable typo
Diffstat (limited to 'libavcodec/vc1dec.c')
-rw-r--r-- | libavcodec/vc1dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index ce690f4196..3f10c85628 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -5520,7 +5520,7 @@ static int vc1_decode_frame(AVCodecContext *avctx, void *data, s->current_picture.f.key_frame = s->pict_type == AV_PICTURE_TYPE_I; /* skip B-frames if we don't have reference frames */ - if (s->last_picture_ptr == NULL && (s->pict_type == AV_PICTURE_TYPE_B || s->dropable)) { + if (s->last_picture_ptr == NULL && (s->pict_type == AV_PICTURE_TYPE_B || s->droppable)) { goto err; } if ((avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type == AV_PICTURE_TYPE_B) || |