[FFmpeg-devel] [PATCH] avformat/utils: Find a fallback probe decoder that will also match a forced decoder's codec.

2020-06-03 Thread Samuel Foss
Prevent codecpar->codec_id from getting out of sync with the codec instantiated for probing. Signed-off-by: Samuel Foss --- libavformat/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index c9385318f6..b3d902c6b5 100

Re: [FFmpeg-devel] [PATCH] avformat: Find a fallback probe decoder that will also match a forced decoder's codec.

2020-06-03 Thread Samuel Foss
No - sorry, this inherited my existing global git configs. On Tue, Jun 2, 2020 at 5:33 PM Michael Niedermayer wrote: > On Mon, Jun 01, 2020 at 10:57:08AM -0400, sfoss wrote: > > Prevent codecpar->codec_id from getting out of sync with the codec > instantiated for probing. > > --- > > libavforma