Commit c0ae5152 authored by Jai Menon's avatar Jai Menon Committed by Mans Rullgard

ffmetaenc: Use correct format specifiers.

Use printf format macros from inttypes.h.
Additionally, this fixes a warning when building with clang.
parent e781c4e6
...@@ -19,6 +19,8 @@ ...@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <inttypes.h>
#include "avformat.h" #include "avformat.h"
#include "ffmeta.h" #include "ffmeta.h"
...@@ -72,8 +74,8 @@ static int write_trailer(AVFormatContext *s) ...@@ -72,8 +74,8 @@ static int write_trailer(AVFormatContext *s)
put_tag(s->pb, ID_CHAPTER); put_tag(s->pb, ID_CHAPTER);
put_byte(s->pb, '\n'); put_byte(s->pb, '\n');
url_fprintf(s->pb, "TIMEBASE=%d/%d\n", ch->time_base.num, ch->time_base.den); url_fprintf(s->pb, "TIMEBASE=%d/%d\n", ch->time_base.num, ch->time_base.den);
url_fprintf(s->pb, "START=%lld\n", ch->start); url_fprintf(s->pb, "START=%"PRId64"\n", ch->start);
url_fprintf(s->pb, "END=%lld\n", ch->end); url_fprintf(s->pb, "END=%"PRId64"\n", ch->end);
write_tags(s->pb, ch->metadata); write_tags(s->pb, ch->metadata);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment