gst/ffmpegcolorspace/gstffmpegcodecmap.c: Marking caps conversion issues as GST_WARNI...
authorEdward Hervey <bilboed@bilboed.com>
Sat, 27 May 2006 13:09:16 +0000 (13:09 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Sat, 27 May 2006 13:09:16 +0000 (13:09 +0000)
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.

ChangeLog
gst/ffmpegcolorspace/gstffmpegcodecmap.c

index 068fe75..5798a7c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * README:
index 8436f8b..6e5c257 100644 (file)
@@ -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);
     g_free (str);
   } 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;
@@ -384,7 +384,7 @@ gst_ffmpeg_smpfmt_to_caps (enum SampleFormat sample_fmt,
     GST_DEBUG ("caps for sample_fmt=%d: %s", sample_fmt, str);
     g_free (str);
   } 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;