Fix typefind function for BBB's new system
Original commit message from CVS: Fix typefind function for BBB's new system
This commit is contained in:
parent
ee8a7abed4
commit
554690f45a
@ -627,9 +627,13 @@ gst_swfdec_get_property (GObject *object, guint prop_id, GValue *value, GParamSp
|
|||||||
}
|
}
|
||||||
|
|
||||||
static GstCaps *
|
static GstCaps *
|
||||||
swf_type_find(GstBuffer *buf, gpointer private)
|
swf_type_find(GstByteStream *bs, gpointer private)
|
||||||
{
|
{
|
||||||
gchar *data = GST_BUFFER_DATA(buf);
|
GstBuffer *buf;
|
||||||
|
gchar *data;
|
||||||
|
|
||||||
|
gst_bytestream_peek (bs, &buf, 4);
|
||||||
|
data = GST_BUFFER_DATA(buf);
|
||||||
|
|
||||||
if (GST_BUFFER_SIZE (buf) < 4)
|
if (GST_BUFFER_SIZE (buf) < 4)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user