don't critical (#137588)

Original commit message from CVS:
don't critical (#137588)
This commit is contained in:
Thomas Vander Stichele 2004-03-18 12:55:38 +00:00
parent 192bfd676d
commit 0fc9489042
3 changed files with 8 additions and 2 deletions

View file

@ -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>
* configure.ac: bump nano to 1

2
common

@ -1 +1 @@
Subproject commit af639632ef610fb83ee7a07bead59459986741f9
Subproject commit 99901894a48091bfed16826702c38c4063e64954

View file

@ -341,7 +341,8 @@ gst_ffmpegcsp_chain (GstPad *pad,
if (space->from_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);
return;
}