projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
64b5df4
)
ext/lame/gstlame.c: Fix broken GST_ELEMENT_ERROR macro, fixes compile with the Sun
author
Tim-Philipp Müller
<tim@centricular.net>
Fri, 22 Feb 2008 14:55:57 +0000
(14:55 +0000)
committer
Tim-Philipp Müller
<tim@centricular.net>
Fri, 22 Feb 2008 14:55:57 +0000
(14:55 +0000)
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).
ext/lame/gstlame.c
patch
|
blob
|
history
diff --git
a/ext/lame/gstlame.c
b/ext/lame/gstlame.c
index
6e2d72f
..
ef182e2
100644
(file)
--- a/
ext/lame/gstlame.c
+++ b/
ext/lame/gstlame.c
@@
-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;
}
}