mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
gst/wavparse/gstwavparse.c: add ATRAC3 to STATIC CAPS to fix a warning
Original commit message from CVS: * gst/wavparse/gstwavparse.c: add ATRAC3 to STATIC CAPS to fix a warning * gst/matroska/ebml-read.c: * gst-libs/gst/riff/riff-read.c: fix typos
This commit is contained in:
parent
9ba183e760
commit
515dc1aba5
3 changed files with 12 additions and 2 deletions
|
@ -1,3 +1,12 @@
|
|||
2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
|
||||
|
||||
* gst/wavparse/gstwavparse.c:
|
||||
add ATRAC3 to STATIC CAPS to fix a warning
|
||||
|
||||
* gst/matroska/ebml-read.c:
|
||||
* gst-libs/gst/riff/riff-read.c:
|
||||
fix typos
|
||||
|
||||
2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
|
||||
|
||||
* gst-libs/gst/riff/riff-media.c:
|
||||
|
|
|
@ -142,7 +142,7 @@ gst_ebml_read_use_event (GstEbmlRead * ebml, GstEvent * event)
|
|||
return FALSE;
|
||||
|
||||
case GST_EVENT_DISCONTINUOUS:
|
||||
GST_WARNING_OBJECT (ebml, "Unexected discont - might lose sync");
|
||||
GST_WARNING_OBJECT (ebml, "Unexpected discont - might lose sync");
|
||||
gst_pad_event_default (ebml->sinkpad, event);
|
||||
return TRUE;
|
||||
|
||||
|
|
|
@ -91,7 +91,8 @@ static GstStaticPadTemplate src_template_factory =
|
|||
"audio/x-adpcm, "
|
||||
"layout = (string) dvi, "
|
||||
"block_align = (int) [ 1, 8192 ], "
|
||||
"rate = (int) [ 8000, 48000 ], " "channels = (int) [ 1, 2 ]")
|
||||
"rate = (int) [ 8000, 48000 ], " "channels = (int) [ 1, 2 ];"
|
||||
"audio/x-vnd.sony.atrac3")
|
||||
);
|
||||
|
||||
/* WavParse signals and args */
|
||||
|
|
Loading…
Reference in a new issue