Re: [FFmpeg-devel] [PATCH] avformat/dashenc: fix min_seg_duration option size

2017-11-18 Thread Michael Niedermayer
On Sat, Nov 18, 2017 at 03:11:45PM +, James Cowgill wrote: > In the DASHContext structure, min_seg_duration is declared as an int, > but the AVOption list claimed it was an INT64. Change the option list > to use the correct size, which should fix some initialization errors > seen on big-endian

[FFmpeg-devel] [PATCH] avformat/dashenc: fix min_seg_duration option size

2017-11-18 Thread James Cowgill
In the DASHContext structure, min_seg_duration is declared as an int, but the AVOption list claimed it was an INT64. Change the option list to use the correct size, which should fix some initialization errors seen on big-endian platforms. Signed-off-by: James Cowgill ---