summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-12-14 19:46:31 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-12-14 20:56:59 +0100
commita29524bf2e197dd8d582445de0fe17f03b79f79d (patch)
treece252cf45bbe9c3a36ff6b47a320f6f3ba064194
parent8ddfc00ab7ac3691464b33fa83107dcfdabaf1ee (diff)
downloadffmpeg-streaming-a29524bf2e197dd8d582445de0fe17f03b79f79d.zip
ffmpeg-streaming-a29524bf2e197dd8d582445de0fe17f03b79f79d.tar.gz
avformat/utils: Do not update programs streams from program-less streams in update_wrap_reference()
Fixes Ticket3686 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavformat/utils.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 9328d6b..a883745 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -594,6 +594,8 @@ static int update_wrap_reference(AVFormatContext *s, AVStream *st, int stream_in
int default_stream_index = av_find_default_stream_index(s);
if (s->streams[default_stream_index]->pts_wrap_reference == AV_NOPTS_VALUE) {
for (i = 0; i < s->nb_streams; i++) {
+ if (av_find_program_from_stream(s, NULL, i))
+ continue;
s->streams[i]->pts_wrap_reference = pts_wrap_reference;
s->streams[i]->pts_wrap_behavior = pts_wrap_behavior;
}
OpenPOWER on IntegriCloud