diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-12 20:51:40 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-26 08:16:05 +0200 |
commit | e7021c0ed5d1265d5b4f0f01a01f840196a70415 (patch) | |
tree | dcb6a114d1a187001a03af53436d7b50aca79cb3 /libavcodec/rv34.c | |
parent | 73a4f7c21bbb179f7542d8a5fedf55fd894fa9da (diff) | |
download | ffmpeg-e7021c0ed5d1265d5b4f0f01a01f840196a70415.tar.gz |
lavc: remove FF_API_HURRY_UP cruft
Diffstat (limited to 'libavcodec/rv34.c')
-rw-r--r-- | libavcodec/rv34.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libavcodec/rv34.c b/libavcodec/rv34.c index 8122b66087..30dbcf821f 100644 --- a/libavcodec/rv34.c +++ b/libavcodec/rv34.c @@ -1454,19 +1454,10 @@ int ff_rv34_decode_frame(AVCodecContext *avctx, } if((!s->last_picture_ptr || !s->last_picture_ptr->data[0]) && si.type == FF_B_TYPE) return -1; -#if FF_API_HURRY_UP - /* skip b frames if we are in a hurry */ - if(avctx->hurry_up && si.type==FF_B_TYPE) return buf_size; -#endif if( (avctx->skip_frame >= AVDISCARD_NONREF && si.type==FF_B_TYPE) || (avctx->skip_frame >= AVDISCARD_NONKEY && si.type!=FF_I_TYPE) || avctx->skip_frame >= AVDISCARD_ALL) return buf_size; -#if FF_API_HURRY_UP - /* skip everything if we are in a hurry>=5 */ - if(avctx->hurry_up>=5) - return buf_size; -#endif for(i=0; i<slice_count; i++){ int offset= get_slice_offset(avctx, slices_hdr, i); |