diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-02-08 10:55:40 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-02-08 10:55:40 +0000 |
commit | ef327114ef941137881c1d4822cd68c28bd3f28d (patch) | |
tree | 508efbacce6bfe18bc13974e0b646abab179cf26 /gst/mpegaudioparse | |
parent | 33c46913a12743210607a4181d11416548592a1a (diff) | |
download | gst-plugins-bad-ef327114ef941137881c1d4822cd68c28bd3f28d.tar.gz gst-plugins-bad-ef327114ef941137881c1d4822cd68c28bd3f28d.tar.bz2 gst-plugins-bad-ef327114ef941137881c1d4822cd68c28bd3f28d.zip |
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
Diffstat (limited to 'gst/mpegaudioparse')
-rw-r--r-- | gst/mpegaudioparse/gstmp3types.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/mpegaudioparse/gstmp3types.c b/gst/mpegaudioparse/gstmp3types.c index c0735cc5..81729d92 100644 --- a/gst/mpegaudioparse/gstmp3types.c +++ b/gst/mpegaudioparse/gstmp3types.c @@ -33,10 +33,10 @@ mp3_typefind(GstBuffer *buf, gpointer private) { gchar *data; gulong head; - - data = GST_BUFFER_DATA(buf); GstCaps *caps; + data = GST_BUFFER_DATA(buf); + GST_DEBUG (0,"mp3typefind: typefind\n"); /* check for ID3 Tag first and forward ID3 length */ |