gst/typefind/gsttypefindfunctions.c: Disable halfway-seek for pending release (since it needs a new core release).

Original commit message from CVS:
* gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
Disable halfway-seek for pending release (since it needs a new
core release).
This commit is contained in:
Ronald S. Bultje 2004-11-09 21:06:11 +00:00
parent ae45abfb23
commit f1d2d752e6
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2004-11-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
Disable halfway-seek for pending release (since it needs a new
core release).
2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
* sys/v4l/gstv4lsrc.c:

View file

@ -375,7 +375,7 @@ mp3_type_find (GstTypeFind * tf, gpointer unused)
guint size;
guint64 skipped;
for (try = 0; try < 2; try++) {
for (try = 0; try < 1 /* 2 */ ; try++) {
guint64 start_off = (try == 0) ? 0 : length / 2;
if (try != 0 && start_off == 0)