mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
ext/lame/gstlame.c: Fix broken GST_ELEMENT_ERROR macro, fixes compile with the Sun
Original commit message from CVS: * ext/lame/gstlame.c: (gst_lame_sink_setcaps): Fix broken GST_ELEMENT_ERROR macro, fixes compile with the Sun Workshop 12 compiler, but probably also crashes (#517985).
This commit is contained in:
parent
a07c914565
commit
ec18a61d72
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-02-22 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* ext/lame/gstlame.c: (gst_lame_sink_setcaps):
|
||||
Fix broken GST_ELEMENT_ERROR macro, fixes compile with the Sun
|
||||
Workshop 12 compiler, but probably also crashes (#517985).
|
||||
|
||||
2008-02-22 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
Patch by: Thiago Sousa Santos <thiagoss at lcc dot ufcg dot edu dot br>
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 135628f16d422584d3454fb9c9805e7be25760a1
|
||||
Subproject commit bd6ec57040fe3fa93e21ca440dfe494e3ee18555
|
|
@ -578,7 +578,7 @@ zero_output_rate:
|
|||
setup_failed:
|
||||
{
|
||||
GST_ELEMENT_ERROR (lame, LIBRARY, SETTINGS,
|
||||
(_("Failed to configure LAME encoder. Check your encoding parameters.")), NULL);
|
||||
(_("Failed to configure LAME encoder. Check your encoding parameters.")), (NULL));
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue