projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4232bbb
)
audioparse: fix a format string as reported on irc.
author
Michael Smith
<msmith@songbirdnest.com>
Fri, 11 Dec 2009 18:25:16 +0000
(10:25 -0800)
committer
Michael Smith
<msmith@songbirdnest.com>
Fri, 11 Dec 2009 18:25:16 +0000
(10:25 -0800)
gst/audioparsers/gstbaseparse.c
patch
|
blob
|
history
diff --git
a/gst/audioparsers/gstbaseparse.c
b/gst/audioparsers/gstbaseparse.c
index fa506a1b2c77a569ab6d10438b557f4d07f05ae2..909a806cc0e4b6a7076988ad77f205d3a0192be1 100644
(file)
--- a/
gst/audioparsers/gstbaseparse.c
+++ b/
gst/audioparsers/gstbaseparse.c
@@
-1656,8
+1656,8
@@
gst_base_parse_set_frame_props (GstBaseParse * parse, guint fps_num,
gst_util_uint64_scale (GST_SECOND, parse->priv->fps_den,
parse->priv->fps_num);
}
- GST_LOG_OBJECT (parse, "set fps: %d/%d => duration: %
d ms", fps_num, fps_den
,
- parse->priv->frame_duration / GST_MSECOND);
+ GST_LOG_OBJECT (parse, "set fps: %d/%d => duration: %
" G_GINT64_FORMAT " ms"
,
+
fps_num, fps_den,
parse->priv->frame_duration / GST_MSECOND);
GST_LOG_OBJECT (parse, "set update interval: %d", interval);
GST_BASE_PARSE_UNLOCK (parse);
}