Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/vble.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/vble.c b/libavcodec/vble.c
index 07efad8f4a..fb09acde80 100644
--- a/libavcodec/vble.c
+++ b/libavcodec/vble.c
@@ -141,8 +141,7 @@ static int vble_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
version = AV_RL32(src);
if (version != 1) {
- av_log(avctx, AV_LOG_ERROR, "Unsupported VBLE Version: %d\n", version);
- return AVERROR_INVALIDDATA;
+ av_log(avctx, AV_LOG_WARNING, "Unsupported VBLE Version: %d\n", version);
}
init_get_bits(&gb, src + 4, (avpkt->size - 4) * 8);