diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-05-31 21:23:45 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-05-31 23:45:14 +0200 |
commit | b0a4e5f9e765dc601a62f87cf3510ac381c3c4c6 (patch) | |
tree | 129849fc391603098036a46aaa2da6b3c03d95f8 /libavfilter/vsrc_movie.c | |
parent | c51695dbf6e05b397ad8ef8e89d27723db5cb9f1 (diff) | |
download | ffmpeg-b0a4e5f9e765dc601a62f87cf3510ac381c3c4c6.tar.gz |
Employ correct printf format specifiers, mostly in debug output.
Diffstat (limited to 'libavfilter/vsrc_movie.c')
-rw-r--r-- | libavfilter/vsrc_movie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vsrc_movie.c b/libavfilter/vsrc_movie.c index 5e15524e61..a26787d561 100644 --- a/libavfilter/vsrc_movie.c +++ b/libavfilter/vsrc_movie.c @@ -152,7 +152,7 @@ static int movie_init(AVFilterContext *ctx) movie->w = movie->codec_ctx->width; movie->h = movie->codec_ctx->height; - av_log(ctx, AV_LOG_INFO, "seek_point:%lld format_name:%s file_name:%s stream_index:%d\n", + av_log(ctx, AV_LOG_INFO, "seek_point:%"PRIi64" format_name:%s file_name:%s stream_index:%d\n", movie->seek_point, movie->format_name, movie->file_name, movie->stream_index); |