mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
don't critical (#137588)
Original commit message from CVS: don't critical (#137588)
This commit is contained in:
parent
192bfd676d
commit
0fc9489042
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
|
||||||
|
don't critical, throw error (#137588)
|
||||||
|
|
||||||
2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* configure.ac: bump nano to 1
|
* configure.ac: bump nano to 1
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit af639632ef610fb83ee7a07bead59459986741f9
|
Subproject commit 99901894a48091bfed16826702c38c4063e64954
|
|
@ -341,7 +341,8 @@ gst_ffmpegcsp_chain (GstPad *pad,
|
||||||
|
|
||||||
if (space->from_pixfmt == PIX_FMT_NB ||
|
if (space->from_pixfmt == PIX_FMT_NB ||
|
||||||
space->to_pixfmt == PIX_FMT_NB) {
|
space->to_pixfmt == PIX_FMT_NB) {
|
||||||
g_critical ("attempting to convert unknown formats");
|
GST_ELEMENT_ERROR (space, CORE, NOT_IMPLEMENTED, NULL,
|
||||||
|
("attempting to convert colorspaces between unknown formats"));
|
||||||
gst_buffer_unref (inbuf);
|
gst_buffer_unref (inbuf);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue