This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
ws-snd1: return meaningful error code
Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n1.1
Paul B Mahol
12 years ago
parent
679c7578a6
commit
e4af8ed8c7
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/ws-snd1.c
+ 1
- 1
libavcodec/ws-snd1.c
View File
@@ -84,7 +84,7 @@ static int ws_snd_decode_frame(AVCodecContext *avctx, void *data,
if (in_size > buf_size) {
av_log(avctx, AV_LOG_ERROR, "Frame data is larger than input buffer\n");
return
-1
;
return
AVERROR_INVALIDDATA
;
}
/* get output buffer */
Write
Preview
Loading…
Cancel
Save