[FFmpeg-devel] Compile using bash in Win10 anniversary?

2016-08-12 Thread Dan Haddix
Can you cross compile ffmpeg for Windows using the new bash built in to Win10 anniversary? I'm currently using MinGW but it seems like it might be easier to use the built in bash if possible. However I tried a basic build, using the same commands I do in MinGW, and it fails. So I assume there is

[FFmpeg-devel] Patch for libavcodec dvdec.c

2015-12-18 Thread Dan Haddix
This is a patch for the bug filed here... https://trac.ffmpeg.org/ticket/5092 as described in the bug report the current code is designed against the SMPTE 314M spec, which only applies to SD content. In the SMPTE 370M spec they have flipped the meaning of "field 1" and "field 2" so the bits i

[FFmpeg-devel] Error in mpegaudio_parser.c

2015-04-06 Thread Dan Haddix
I think this line in mpegaudio_parser.c is wrong int header_threshold = avctx->codec_id != AV_CODEC_ID_NONE && avctx->codec_id != codec_id; I believe it should be... int header_threshold = avctx->codec_id != AV_CODEC_ID_NONE && avctx->codec_id == codec_id; I believe the intention of the l