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:
b2aa8ae
)
vdpaumpegdec: print frame_nr in debug print
author
Carl-Anton Ingmarsson
<ca.ingmarsson@gmail.com>
Fri, 5 Jun 2009 17:08:24 +0000
(19:08 +0200)
committer
Jan Schmidt
<thaytan@noraisin.net>
Sat, 20 Jun 2009 14:21:43 +0000
(15:21 +0100)
sys/vdpau/gstvdpmpegdecoder.c
patch
|
blob
|
history
diff --git
a/sys/vdpau/gstvdpmpegdecoder.c
b/sys/vdpau/gstvdpmpegdecoder.c
index fd06ea3b372d4ccde58c0be6d65bc88ef0569b6c..04bebb8a4622473709e8497aea573589f35e1203 100644
(file)
--- a/
sys/vdpau/gstvdpmpegdecoder.c
+++ b/
sys/vdpau/gstvdpmpegdecoder.c
@@
-308,8
+308,10
@@
gst_vdp_mpeg_decoder_push_video_buffer (GstVdpMpegDecoder * mpeg_dec,
gst_buffer_set_caps (GST_BUFFER (buffer), GST_PAD_CAPS (mpeg_dec->src));
GST_DEBUG_OBJECT (mpeg_dec,
- "Pushing buffer with timestamp: %" GST_TIME_FORMAT,
- GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buffer)));
+ "Pushing buffer with timestamp: %" GST_TIME_FORMAT
+ " frame_nr: %" G_GINT64_FORMAT,
+ GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buffer)),
+ GST_BUFFER_OFFSET (buffer));
return gst_pad_push (mpeg_dec->src, GST_BUFFER (buffer));
}