diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-02 01:15:58 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-01-02 02:22:04 +0100 |
commit | ff08767817c2af07321ffc4fa35274da3d163d81 (patch) | |
tree | 3cc6756056721ed1e1c836cf53cd091dbd135958 /libavformat/utils.c | |
parent | bc1e72c38ead1d3c71a99d714ef68894b8dffd0a (diff) | |
download | ffmpeg-ff08767817c2af07321ffc4fa35274da3d163d81.tar.gz |
lavf: Fix codec id forcing with probed codecs
Fixes Ticket2088
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 341e40f1e1eeba1a2952c26363630596193e887b)
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); } } } |