On 16/02/16 03:46, Vittorio Giovara wrote:
> ---
> libavformat/mov.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/libavformat/mov.c b/libavformat/mov.c
> index 7081ead..d0a30c2 100644
> --- a/libavformat/mov.c
> +++ b/libavformat/mov.c
> @@ -1796,7 +1796,8 @@ int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext
> *pb, int entries)
> avio_rb16(pb); /* reserved */
> dref_id = avio_rb16(pb);
> } 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);
> return AVERROR_INVALIDDATA;
> }
>
> @@ -1810,7 +1811,7 @@ int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext
> *pb, int entries)
> id = mov_codec_id(st, format);
>
> 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);
>
> if (st->codec->codec_type==AVMEDIA_TYPE_VIDEO) {
>
Sure.
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel