[FFmpeg-cvslog] ffmetadec.c: fix compiler warnings.
Ronald S. Bultje
git at videolan.org
Fri Mar 25 03:13:36 CET 2011
ffmpeg | branch: master | Ronald S. Bultje <rsbultje at gmail.com> | Thu Mar 24 07:41:03 2011 -0400| [cd256c3b89c14651b9ff75d9235f2c146fa48aba] | committer: Ronald S. Bultje
ffmetadec.c: fix compiler warnings.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cd256c3b89c14651b9ff75d9235f2c146fa48aba
---
libavformat/ffmetadec.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/ffmetadec.c b/libavformat/ffmetadec.c
index a6cc858..6915b60 100644
--- a/libavformat/ffmetadec.c
+++ b/libavformat/ffmetadec.c
@@ -61,14 +61,14 @@ static AVChapter *read_chapter(AVFormatContext *s)
if (sscanf(line, "TIMEBASE=%d/%d", &tb.num, &tb.den))
get_line(s->pb, line, sizeof(line));
- if (!sscanf(line, "START=%lld", &start)) {
+ if (!sscanf(line, "START=%"SCNd64, &start)) {
av_log(s, AV_LOG_ERROR, "Expected chapter start timestamp, found %s.\n", line);
start = (s->nb_chapters && s->chapters[s->nb_chapters - 1]->end != AV_NOPTS_VALUE) ?
s->chapters[s->nb_chapters - 1]->end : 0;
} else
get_line(s->pb, line, sizeof(line));
- if (!sscanf(line, "END=%lld", &end)) {
+ if (!sscanf(line, "END=%"SCNd64, &end)) {
av_log(s, AV_LOG_ERROR, "Expected chapter end timestamp, found %s.\n", line);
end = AV_NOPTS_VALUE;
}
More information about the ffmpeg-cvslog
mailing list