On 16/02/16 18:04, Vittorio Giovara wrote: > On Tue, Feb 16, 2016 at 4:38 AM, Diego Biurrun <[email protected]> wrote: >> On Mon, Feb 15, 2016 at 09:46:16PM -0500, Vittorio Giovara wrote: >>> --- a/libavformat/mov.c >>> +++ b/libavformat/mov.c >>> @@ -1796,7 +1796,8 @@ int ff_mov_read_stsd_entries(MOVContext *c, >>> AVIOContext *pb, int entries) >>> } else { >>> - av_log(c->fc, AV_LOG_ERROR, "invalid size %"PRIu32" in >>> stsd\n", size); >>> + av_log(c->fc, AV_LOG_ERROR, >>> + "invalid size %"PRIu64" in stsd\n", size); >> >> wrong > > ? > >>> @@ -1810,7 +1811,7 @@ int ff_mov_read_stsd_entries(MOVContext *c, >>> AVIOContext *pb, int entries) >>> av_log(c->fc, AV_LOG_TRACE, >>> - "size=%"PRIu32" format=0x%08x codec_type=%d\n", >>> + "size=%"PRIu64" format=0x%08x codec_type=%d\n", >>> size, format, st->codec->codec_type); >> >> wrong > > ?? >
Use signed, indeed ^^. lu _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
