Browse code

avcodec/dvbsubdec: Remove redundant "DVBSub error" prefix

Found-by: ubitux
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Michael Niedermayer authored on 2014/12/06 10:03:08
Showing 1 changed files
... ...
@@ -569,7 +569,7 @@ static int dvbsub_read_2bit_string(AVCodecContext *avctx,
569 569
     }
570 570
 
571 571
     if (get_bits(&gb, 6))
572
-        av_log(avctx, AV_LOG_ERROR, "DVBSub error: line overflow\n");
572
+        av_log(avctx, AV_LOG_ERROR, "line overflow\n");
573 573
 
574 574
     (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
575 575
 
... ...
@@ -692,7 +692,7 @@ static int dvbsub_read_4bit_string(AVCodecContext *avctx, uint8_t *destbuf, int
692 692
     }
693 693
 
694 694
     if (get_bits(&gb, 8))
695
-        av_log(avctx, AV_LOG_ERROR, "DVBSub error: line overflow\n");
695
+        av_log(avctx, AV_LOG_ERROR, "line overflow\n");
696 696
 
697 697
     (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
698 698
 
... ...
@@ -748,7 +748,7 @@ static int dvbsub_read_8bit_string(AVCodecContext *avctx,
748 748
     }
749 749
 
750 750
     if (*(*srcbuf)++)
751
-        av_log(avctx, AV_LOG_ERROR, "DVBSub error: line overflow\n");
751
+        av_log(avctx, AV_LOG_ERROR, "line overflow\n");
752 752
 
753 753
     return pixels_read;
754 754
 }