mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
gst/ffmpegcolorspace/gstffmpegcodecmap.c: Marking caps conversion issues as GST_WARNING is way too verbose,
Original commit message from CVS: * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps): Marking caps conversion issues as GST_WARNING is way too verbose, Moving them to GST_LOG.
This commit is contained in:
parent
e8e276d65c
commit
c9231121d3
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2006-05-27 Edward Hervey <edward@fluendo.com>
|
||||||
|
|
||||||
|
* gst/ffmpegcolorspace/gstffmpegcodecmap.c:
|
||||||
|
(gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
|
||||||
|
Marking caps conversion issues as GST_WARNING is way too verbose,
|
||||||
|
Moving them to GST_LOG.
|
||||||
|
|
||||||
2006-05-27 Tim-Philipp Müller <tim at centricular dot net>
|
2006-05-27 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* README:
|
* README:
|
||||||
|
|
|
@ -338,7 +338,7 @@ gst_ffmpeg_pixfmt_to_caps (enum PixelFormat pix_fmt, AVCodecContext * context)
|
||||||
GST_DEBUG ("caps for pix_fmt=%d: %s", pix_fmt, str);
|
GST_DEBUG ("caps for pix_fmt=%d: %s", pix_fmt, str);
|
||||||
g_free (str);
|
g_free (str);
|
||||||
} else {
|
} else {
|
||||||
GST_WARNING ("No caps found for pix_fmt=%d", pix_fmt);
|
GST_LOG ("No caps found for pix_fmt=%d", pix_fmt);
|
||||||
}
|
}
|
||||||
|
|
||||||
return caps;
|
return caps;
|
||||||
|
@ -384,7 +384,7 @@ gst_ffmpeg_smpfmt_to_caps (enum SampleFormat sample_fmt,
|
||||||
GST_DEBUG ("caps for sample_fmt=%d: %s", sample_fmt, str);
|
GST_DEBUG ("caps for sample_fmt=%d: %s", sample_fmt, str);
|
||||||
g_free (str);
|
g_free (str);
|
||||||
} else {
|
} else {
|
||||||
GST_WARNING ("No caps found for sample_fmt=%d", sample_fmt);
|
GST_LOG ("No caps found for sample_fmt=%d", sample_fmt);
|
||||||
}
|
}
|
||||||
|
|
||||||
return caps;
|
return caps;
|
||||||
|
|
Loading…
Reference in a new issue