mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
gst/audioconvert/gstaudioconvert.c: set rank to PRIMARY
Original commit message from CVS: 2004-02-22 Benjamin Otte <otte@gnome.org> reported by: Stefan Kost <kost@imn.htwk-leipzig.de> * gst/audioconvert/gstaudioconvert.c: (plugin_init): set rank to PRIMARY * gst/volume/gstvolume.c: (plugin_init): set rank to NONE fixes #134960 2004-02-22 Julio M. Merino Vidal <jmmv@menta.net> reviewed by Benjamin Otte <otte@gnome.org> * ext/flac/gstflacenc.c: (gst_flacenc_chain): escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
This commit is contained in:
parent
fb73db4b31
commit
c80c21d5d7
3 changed files with 20 additions and 3 deletions
17
ChangeLog
17
ChangeLog
|
@ -1,3 +1,20 @@
|
|||
2004-02-22 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
|
||||
|
||||
* gst/audioconvert/gstaudioconvert.c: (plugin_init):
|
||||
set rank to PRIMARY
|
||||
* gst/volume/gstvolume.c: (plugin_init):
|
||||
set rank to NONE
|
||||
fixes #134960
|
||||
|
||||
2004-02-22 Julio M. Merino Vidal <jmmv@menta.net>
|
||||
|
||||
reviewed by Benjamin Otte <otte@gnome.org>
|
||||
|
||||
* ext/flac/gstflacenc.c: (gst_flacenc_chain):
|
||||
escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
|
||||
|
||||
2004-02-22 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
* configure.ac:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit d821172609916bc61bbbca7f8d2e6cf0ca1ab47a
|
||||
Subproject commit 0945c85c4c9139e2e5b8e04d0fc841b8aa1e6e9b
|
|
@ -575,7 +575,7 @@ gst_flacenc_chain (GstPad *pad, GstData *_data)
|
|||
gst_flacenc_set_metadata (flacenc);
|
||||
state = FLAC__seekable_stream_encoder_init (flacenc->encoder);
|
||||
if (state != FLAC__STREAM_ENCODER_OK) {
|
||||
GST_ELEMENT_ERROR (flacenc, LIBRARY, INIT, NULL,
|
||||
GST_ELEMENT_ERROR (flacenc, LIBRARY, INIT, (NULL),
|
||||
("could not initialize encoder (wrong parameters?)"));
|
||||
return;
|
||||
}
|
||||
|
@ -610,7 +610,7 @@ gst_flacenc_chain (GstPad *pad, GstData *_data)
|
|||
flacenc->data = NULL;
|
||||
|
||||
if (!res) {
|
||||
GST_ELEMENT_ERROR (flacenc, STREAM, ENCODE, NULL, NULL);
|
||||
GST_ELEMENT_ERROR (flacenc, STREAM, ENCODE, (NULL), (NULL));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue