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:
authorStefano Sabatini <stefasab@gmail.com>2012-06-22 19:43:40 +0400
committerStefano Sabatini <stefasab@gmail.com>2012-06-23 02:42:51 +0400
commit201b409da0d81dce19caa1393fe1c9f8e17aeb92 (patch)
treefbe8889f8e477680a96ac18e4a1560890c19d1ad /libavcodec/pcm.c
parent69971410f9d9fdf5bc6e7cbe73d917155ea442ce (diff)
lavc/pcm: clarify error message from pcm_decode_frame()
Extend/clarify an error message in case of invalid packet size, and return a proper error message instead of -1. Improve debuggability.
Diffstat (limited to 'libavcodec/pcm.c')
-rw-r--r--libavcodec/pcm.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c
index c72b2003c4..826267fdb2 100644
--- a/libavcodec/pcm.c
+++ b/libavcodec/pcm.c
@@ -293,8 +293,10 @@ static int pcm_decode_frame(AVCodecContext *avctx, void *data,
if (n && buf_size % n) {
if (buf_size < n) {
- av_log(avctx, AV_LOG_ERROR, "invalid PCM packet\n");
- return -1;
+ av_log(avctx, AV_LOG_ERROR,
+ "Invalid PCM packet, data has size %d but at least a size of %d was expected\n",
+ buf_size, n);
+ return AVERROR_INVALIDDATA;
} else
buf_size -= buf_size % n;
}