mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
ext/theora/theoradec.c: Fix build on macosx.
Original commit message from CVS: * ext/theora/theoradec.c: (theora_dec_decode_buffer): Fix build on macosx.
This commit is contained in:
parent
cf5c8e426d
commit
a0e3174c88
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-10-14 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* ext/theora/theoradec.c: (theora_dec_decode_buffer):
|
||||
Fix build on macosx.
|
||||
|
||||
2008-10-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
Based on patch by: Robin Stocker <robin at nibor dot org>
|
||||
|
|
|
@ -1266,7 +1266,7 @@ theora_dec_decode_buffer (GstTheoraDec * dec, GstBuffer * buf)
|
|||
/* EOS does not matter for the decoder */
|
||||
packet.e_o_s = 0;
|
||||
|
||||
GST_LOG_OBJECT (dec, "decode buffer of size %u", packet.bytes);
|
||||
GST_LOG_OBJECT (dec, "decode buffer of size %ld", packet.bytes);
|
||||
|
||||
if (dec->have_header) {
|
||||
if (packet.granulepos != -1) {
|
||||
|
|
Loading…
Reference in a new issue