From ff08767817c2af07321ffc4fa35274da3d163d81 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 2 Jan 2013 01:15:58 +0100 Subject: [PATCH] lavf: Fix codec id forcing with probed codecs Fixes Ticket2088 Signed-off-by: Michael Niedermayer (cherry picked from commit 341e40f1e1eeba1a2952c26363630596193e887b) --- libavformat/utils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/utils.c b/libavformat/utils.c index eab0792ea1..38be37e779 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -731,6 +731,7 @@ no_packet: }else av_log(s, AV_LOG_WARNING, "probed stream %d failed\n", st->index); } + force_codec_ids(s, st); } } }