summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-11-18 03:02:36 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2013-11-18 14:48:53 +0100
commit25c67b21653422bbdc9a3689332ad30031289c33 (patch)
tree4c31950690cda8546ebc140adbf97b8d070a20fd /libavformat
parentfd8af75109913d09fb6673f4aa189b4bf49bede9 (diff)
downloadffmpeg-25c67b21653422bbdc9a3689332ad30031289c33.tar.gz
avformat/utils: dont count attached pics toward the probesize
Such pics behave more like headers which we also dont count. Fixes Ticket3146 Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit a8dec360c5db15e8da4b44ff3c0f02a6c57e8ac0)
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/utils.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index a0bb89d8d6..d32f584197 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2845,9 +2845,10 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
goto find_stream_info_err;
}
- read_size += pkt->size;
-
st = ic->streams[pkt->stream_index];
+ if (!(st->disposition & AV_DISPOSITION_ATTACHED_PIC))
+ read_size += pkt->size;
+
if (pkt->dts != AV_NOPTS_VALUE && st->codec_info_nb_frames > 1) {
/* check for non-increasing dts */
if (st->info->fps_last_dts != AV_NOPTS_VALUE &&