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/mpegvideo.c | |
parent | 1dd1c1c884b2038291fdabf3916b0a3f88ac6411 (diff) | |
download | ffmpeg-ba0c8981200df2ac828df3db981a8181b0793e5b.tar.gz |
cosmetics: Fix dropable --> droppable typo
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 322ad098e8..42367e1e48 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -590,7 +590,7 @@ int ff_mpeg_update_thread_context(AVCodecContext *dst, // B-frame info s->max_b_frames = s1->max_b_frames; s->low_delay = s1->low_delay; - s->dropable = s1->dropable; + s->droppable = s1->droppable; // DivX handling (doesn't work) s->divx_packed = s1->divx_packed; @@ -1362,7 +1362,7 @@ int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx) } pic->f.reference = 0; - if (!s->dropable) { + if (!s->droppable) { if (s->codec_id == AV_CODEC_ID_H264) pic->f.reference = s->picture_structure; else if (s->pict_type != AV_PICTURE_TYPE_B) @@ -1397,7 +1397,7 @@ int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx) if (s->pict_type != AV_PICTURE_TYPE_B) { s->last_picture_ptr = s->next_picture_ptr; - if (!s->dropable) + if (!s->droppable) s->next_picture_ptr = s->current_picture_ptr; } av_dlog(s->avctx, "L%p N%p C%p L%p N%p C%p type:%d drop:%d\n", @@ -1405,7 +1405,7 @@ int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx) s->last_picture_ptr ? s->last_picture_ptr->f.data[0] : NULL, s->next_picture_ptr ? s->next_picture_ptr->f.data[0] : NULL, s->current_picture_ptr ? s->current_picture_ptr->f.data[0] : NULL, - s->pict_type, s->dropable); + s->pict_type, s->droppable); if (s->codec_id != AV_CODEC_ID_H264) { if ((s->last_picture_ptr == NULL || |