Skip to content
Snippets Groups Projects
Commit ce800d46 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/dvbsubdec: Remove redundant "DVBSub error" prefix


Found-by: ubitux
Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent 1d048f76
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment