mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
gst/h264parse/gsth264parse.c: Fix the build. GST_TIME_ARGS takes a timestamp not a buffer.
Original commit message from CVS: * gst/h264parse/gsth264parse.c: Fix the build. GST_TIME_ARGS takes a timestamp not a buffer.
This commit is contained in:
parent
e1e93d1510
commit
7e33919d25
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-01-21 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/h264parse/gsth264parse.c:
|
||||
Fix the build. GST_TIME_ARGS takes a timestamp not a buffer.
|
||||
|
||||
2008-01-20 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
Patch by: Wouter Cloetens <wouter at mind dot be>
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit b6bd1a35b641237d016496039e474dee4230de76
|
||||
Subproject commit 662f544d56a6d6ef20b8ea5f56e975f9e139bc78
|
|
@ -520,7 +520,7 @@ gst_h264_parse_queue_buffer (GstH264Parse * parse, GstBuffer * buffer)
|
|||
|
||||
GST_DEBUG_OBJECT (parse,
|
||||
"analyse buffer of size %u, timestamp %" GST_TIME_FORMAT, size,
|
||||
GST_TIME_ARGS (buffer));
|
||||
GST_TIME_ARGS (timestamp));
|
||||
|
||||
/* now parse all the NAL units in this buffer, for bytestream we only have one
|
||||
* NAL unit but for packetized streams we can have multiple ones */
|
||||
|
|
Loading…
Reference in a new issue