mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-03 02:33:53 +00:00
fixed silly bug apparently gcc 3 allows this according to gcc3
Original commit message from CVS: fixed silly bug apparently gcc 3 allows this according to gcc3
This commit is contained in:
parent
b7e30017df
commit
44e75ff76a
1 changed files with 2 additions and 2 deletions
|
@ -33,10 +33,10 @@ mp3_typefind(GstBuffer *buf, gpointer private)
|
||||||
{
|
{
|
||||||
gchar *data;
|
gchar *data;
|
||||||
gulong head;
|
gulong head;
|
||||||
|
|
||||||
data = GST_BUFFER_DATA(buf);
|
|
||||||
GstCaps *caps;
|
GstCaps *caps;
|
||||||
|
|
||||||
|
data = GST_BUFFER_DATA(buf);
|
||||||
|
|
||||||
GST_DEBUG (0,"mp3typefind: typefind\n");
|
GST_DEBUG (0,"mp3typefind: typefind\n");
|
||||||
|
|
||||||
/* check for ID3 Tag first and forward ID3 length */
|
/* check for ID3 Tag first and forward ID3 length */
|
||||||
|
|
Loading…
Reference in a new issue