commit cfcff8492e4b9e56fa63c0368f0abcae1a4f8c42
Author: Gavin Hurlbut <gjhurlbu@gmail.com>
Date:   Mon Aug 2 21:27:35 2010 -0700

    Silence the #@#$%$#ing spamming errors!

diff --git a/mythtv/libs/libavcodec/h264.c b/mythtv/libs/libavcodec/h264.c
index 65f9d47..35c8b6b 100644
--- a/mythtv/libs/libavcodec/h264.c
+++ b/mythtv/libs/libavcodec/h264.c
@@ -1715,8 +1715,10 @@ static int decode_slice_header(H264Context *h, H264Context *h0){
 
     s->pict_type= h->slice_type; // to make a few old functions happy, it's wrong though
     if (s->pict_type == FF_B_TYPE && s0->last_picture_ptr == NULL) {
+#if 0
         av_log(h->s.avctx, AV_LOG_ERROR,
                "B picture before any references, skipping\n");
+#endif
         return -1;
     }
 
@@ -2623,9 +2625,12 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size){
             context_count = 0;
         }
 
+#if 0
         if (err < 0)
             av_log(h->s.avctx, AV_LOG_ERROR, "decode_slice_header error\n");
-        else if(err == 1) {
+        else 
+#endif
+        if(err == 1) {
             /* Slice could not be decoded in parallel mode, copy down
              * NAL unit stuff to context 0 and restart. Note that
              * rbsp_buffer is not transferred, but since we no longer
@@ -2743,7 +2748,9 @@ static int decode_frame(AVCodecContext *avctx,
 
     if(!(s->flags2 & CODEC_FLAG2_CHUNKS) && !s->current_picture_ptr){
         if (avctx->skip_frame >= AVDISCARD_NONREF || s->hurry_up) return 0;
+#if 0
         av_log(avctx, AV_LOG_ERROR, "no frame!\n");
+#endif
         return -1;
     }
 
diff --git a/mythtv/libs/libavcodec/mpegvideo.c b/mythtv/libs/libavcodec/mpegvideo.c
index 009af92..49699d1 100644
--- a/mythtv/libs/libavcodec/mpegvideo.c
+++ b/mythtv/libs/libavcodec/mpegvideo.c
@@ -202,7 +202,9 @@ static int alloc_frame_buffer(MpegEncContext *s, Picture *pic)
     }
 
     if (s->linesize && (s->linesize != pic->linesize[0] || s->uvlinesize != pic->linesize[1])) {
+#if 0
         av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed (stride changed)\n");
+#endif
         free_frame_buffer(s, pic);
         return -1;
     }
diff --git a/mythtv/libs/libmythtv/avformatdecoder.cpp b/mythtv/libs/libmythtv/avformatdecoder.cpp
index 035acd0..c262a54 100644
--- a/mythtv/libs/libmythtv/avformatdecoder.cpp
+++ b/mythtv/libs/libmythtv/avformatdecoder.cpp
@@ -2873,7 +2873,9 @@ bool AvFormatDecoder::ProcessVideoPacket(AVStream *curstream, AVPacket *pkt)
 
     if (ret < 0)
     {
+#if 0
         VERBOSE(VB_IMPORTANT, LOC_ERR + "Unknown decoding error");
+#endif
         return false;
     }
 

