Re: [FFmpeg-devel] [PATCH] avformat/dashenc: fix format string generation

2015-01-22 Thread Michael Niedermayer
On Wed, Jan 21, 2015 at 09:36:53AM -0600, Rodger Combs wrote: > --- > libavformat/dashenc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) applied merged commit that changes it to PRId64 thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Concerni

Re: [FFmpeg-devel] [PATCH] avformat/dashenc: fix format string generation

2015-01-21 Thread Derek Buitenhuis
On 1/21/2015 3:36 PM, Rodger Combs wrote: > -const char *number_format = DASH_TMPL_ID_TIME ? "lld" : "d"; > +const char *number_format = (id_type == DASH_TMPL_ID_TIME) ? > "lld" : "d"; Why not inttypes.h format? - Derek ___ ffmp