mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
some debug output
Original commit message from CVS: some debug output
This commit is contained in:
parent
875a87a943
commit
b7cd417797
1 changed files with 7 additions and 1 deletions
|
@ -935,8 +935,10 @@ gst_vorbisfile_src_event (GstPad *pad, GstEvent *event)
|
|||
vorbis_info *vi;
|
||||
GstFormat format;
|
||||
|
||||
GST_DEBUG (GST_CAT_EVENT, "vorbisfile: handling seek event");
|
||||
if (!vorbisfile->vf.seekable) {
|
||||
gst_event_unref (event);
|
||||
GST_DEBUG (GST_CAT_EVENT, "vorbis stream is not seekable");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -953,7 +955,8 @@ gst_vorbisfile_src_event (GstPad *pad, GstEvent *event)
|
|||
break;
|
||||
case GST_FORMAT_BYTES:
|
||||
vi = ov_info (&vorbisfile->vf, -1);
|
||||
if (vi->channels * 2 == 0) {
|
||||
if (vi->channels == 0) {
|
||||
GST_DEBUG (GST_CAT_EVENT, "vorbis stream has 0 channels ?");
|
||||
res = FALSE;
|
||||
goto done;
|
||||
}
|
||||
|
@ -975,7 +978,10 @@ gst_vorbisfile_src_event (GstPad *pad, GstEvent *event)
|
|||
& GST_SEEK_FLAG_ACCURATE;
|
||||
}
|
||||
else
|
||||
{
|
||||
GST_DEBUG (GST_CAT_EVENT, "unhandled seek format");
|
||||
res = FALSE;
|
||||
}
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue