mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-13 11:34:10 +00:00
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:
parent
ae45abfb23
commit
f1d2d752e6
2 changed files with 7 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue