summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-09-26 04:53:03 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-09-26 04:53:03 +0200
commit299c0b30a64a0746db2645c00a847930e01d58a4 (patch)
tree3b483ce6941dd8e1cbe8fd9efd4eaa0428e98669 /libavformat
parent4b80a619b7db37157d98f6e5a57ddf53c9132551 (diff)
lavf: fix bug that caused has_decode_delay_been_guessed() to never return !=0
Possibly fixes Ticket1724 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/utils.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index d2d57f1bfa..5bc5ada0dd 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -911,6 +911,8 @@ static int is_intra_only(AVCodecContext *enc){
static int has_decode_delay_been_guessed(AVStream *st)
{
if(st->codec->codec_id != AV_CODEC_ID_H264) return 1;
+ if(!st->info) // if we have left find_stream_info then nb_decoded_frames wont increase anymore for stream copy
+ return 1;
#if CONFIG_H264_DECODER
if(st->codec->has_b_frames &&
avpriv_h264_has_num_reorder_frames(st->codec) == st->codec->has_b_frames)