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/flvdec.c | |
parent | 1dd1c1c884b2038291fdabf3916b0a3f88ac6411 (diff) | |
download | ffmpeg-ba0c8981200df2ac828df3db981a8181b0793e5b.tar.gz |
cosmetics: Fix dropable --> droppable typo
Diffstat (limited to 'libavcodec/flvdec.c')
-rw-r--r-- | libavcodec/flvdec.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libavcodec/flvdec.c b/libavcodec/flvdec.c index dfed95bd89..3640d29847 100644 --- a/libavcodec/flvdec.c +++ b/libavcodec/flvdec.c @@ -89,8 +89,8 @@ int ff_flv_decode_picture_header(MpegEncContext *s) s->height = height; s->pict_type = AV_PICTURE_TYPE_I + get_bits(&s->gb, 2); - s->dropable= s->pict_type > AV_PICTURE_TYPE_P; - if (s->dropable) + s->droppable = s->pict_type > AV_PICTURE_TYPE_P; + if (s->droppable) s->pict_type = AV_PICTURE_TYPE_P; skip_bits1(&s->gb); /* deblocking flag */ @@ -109,7 +109,8 @@ int ff_flv_decode_picture_header(MpegEncContext *s) if(s->avctx->debug & FF_DEBUG_PICT_INFO){ av_log(s->avctx, AV_LOG_DEBUG, "%c esc_type:%d, qp:%d num:%d\n", - s->dropable ? 'D' : av_get_picture_type_char(s->pict_type), s->h263_flv-1, s->qscale, s->picture_number); + s->droppable ? 'D' : av_get_picture_type_char(s->pict_type), + s->h263_flv - 1, s->qscale, s->picture_number); } s->y_dc_scale_table= |