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/h263dec.c | |
parent | 1dd1c1c884b2038291fdabf3916b0a3f88ac6411 (diff) | |
download | ffmpeg-ba0c8981200df2ac828df3db981a8181b0793e5b.tar.gz |
cosmetics: Fix dropable --> droppable typo
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 6281ed2832..fc5f565131 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -600,7 +600,9 @@ retry: 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)) return get_consumed_bytes(s, buf_size); + if (s->last_picture_ptr == NULL && + (s->pict_type == AV_PICTURE_TYPE_B || s->droppable)) + return get_consumed_bytes(s, buf_size); if( (avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type==AV_PICTURE_TYPE_B) || (avctx->skip_frame >= AVDISCARD_NONKEY && s->pict_type!=AV_PICTURE_TYPE_I) || avctx->skip_frame >= AVDISCARD_ALL) |