diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2008-01-21 07:22:47 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2008-01-21 07:22:47 +0000 |
commit | 7e33919d250d788dd203d4bbe8421acf531dc494 (patch) | |
tree | a752cae8767a9408502bf63dfc5b3329947c3784 | |
parent | e1e93d1510fb802851bfcd43c2ed4f04a3c6bffe (diff) | |
download | gst-plugins-bad-7e33919d250d788dd203d4bbe8421acf531dc494.tar.gz gst-plugins-bad-7e33919d250d788dd203d4bbe8421acf531dc494.tar.bz2 gst-plugins-bad-7e33919d250d788dd203d4bbe8421acf531dc494.zip |
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.
-rw-r--r-- | ChangeLog | 5 | ||||
m--------- | common | 0 | ||||
-rw-r--r-- | gst/h264parse/gsth264parse.c | 2 |
3 files changed, 6 insertions, 1 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> diff --git a/common b/common -Subproject b6bd1a35b641237d016496039e474dee4230de7 +Subproject 662f544d56a6d6ef20b8ea5f56e975f9e139bc7 diff --git a/gst/h264parse/gsth264parse.c b/gst/h264parse/gsth264parse.c index 1dc354ec..241c4fd1 100644 --- a/gst/h264parse/gsth264parse.c +++ b/gst/h264parse/gsth264parse.c @@ -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 */ |