summaryrefslogtreecommitdiffstats
path: root/gst/mpegaudioparse/gstmp3types.c
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-02-08 10:55:40 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-02-08 10:55:40 +0000
commitef327114ef941137881c1d4822cd68c28bd3f28d (patch)
tree508efbacce6bfe18bc13974e0b646abab179cf26 /gst/mpegaudioparse/gstmp3types.c
parent33c46913a12743210607a4181d11416548592a1a (diff)
downloadgst-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/gstmp3types.c')
-rw-r--r--gst/mpegaudioparse/gstmp3types.c4
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 */