[FFmpeg-cvslog] avcodec/dvbsubdec: Remove redundant "DVBSub error" prefix

Michael Niedermayer git at videolan.org
Sat Dec 6 02:08:45 CET 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Dec  6 02:03:08 2014 +0100| [ce800d4695b71f707db93bf97db02dd2b6ff0243] | committer: Michael Niedermayer

avcodec/dvbsubdec: Remove redundant "DVBSub error" prefix

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

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ce800d4695b71f707db93bf97db02dd2b6ff0243
---

 libavcodec/dvbsubdec.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/dvbsubdec.c b/libavcodec/dvbsubdec.c
index a58b9b4..e634c9f 100644
--- a/libavcodec/dvbsubdec.c
+++ b/libavcodec/dvbsubdec.c
@@ -569,7 +569,7 @@ static int dvbsub_read_2bit_string(AVCodecContext *avctx,
     }
 
     if (get_bits(&gb, 6))
-        av_log(avctx, AV_LOG_ERROR, "DVBSub error: line overflow\n");
+        av_log(avctx, AV_LOG_ERROR, "line overflow\n");
 
     (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
 
@@ -692,7 +692,7 @@ static int dvbsub_read_4bit_string(AVCodecContext *avctx, uint8_t *destbuf, int
     }
 
     if (get_bits(&gb, 8))
-        av_log(avctx, AV_LOG_ERROR, "DVBSub error: line overflow\n");
+        av_log(avctx, AV_LOG_ERROR, "line overflow\n");
 
     (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
 
@@ -748,7 +748,7 @@ static int dvbsub_read_8bit_string(AVCodecContext *avctx,
     }
 
     if (*(*srcbuf)++)
-        av_log(avctx, AV_LOG_ERROR, "DVBSub error: line overflow\n");
+        av_log(avctx, AV_LOG_ERROR, "line overflow\n");
 
     return pixels_read;
 }



More information about the ffmpeg-cvslog mailing list