I'm compiling with msvc and get some errors with PRIx64 and similars. For example:
snprintf(name, sizeof(name), "0x%"PRIx64, ch_layout);

won't compile, but this work (with the extra space):
snprintf(name, sizeof(name), "0x%" PRIx64, ch_layout);

Can this be included in the sources without introducing problems for other platforms?
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to