gst/asfdemux/gstasfdemux.c: Don't push incomplete packets.

Original commit message from CVS:
Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
Don't push incomplete packets.
* gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
Fix MPEG-4 audio typefinding.
This commit is contained in:
Ronald S. Bultje 2004-10-25 09:01:43 +00:00
parent cd177c8577
commit c362d7a14f
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,12 @@
2004-10-25 James Morrison <ja2morri@csclub.uwaterloo.ca>
Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
Don't push incomplete packets.
* gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
Fix MPEG-4 audio typefinding.
2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* sys/v4l/Makefile.am:

View file

@ -878,7 +878,7 @@ m4a_type_find (GstTypeFind * tf, gpointer unused)
guint8 *data = gst_type_find_peek (tf, 4, 8);
if (data && memcmp (data, "ftypM4A ", 8) == 0) {
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, AAC_CAPS);
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, M4A_CAPS);
}
}