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
avformat/soxenc: return more meaningful error code
Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.4
Paul B Mahol
11 years ago
parent
ef768ab976
commit
0ddb0516f1
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/soxenc.c
+ 1
- 1
libavformat/soxenc.c
View File
@@ -72,7 +72,7 @@ static int sox_write_header(AVFormatContext *s)
avio_wb32(pb, comment_size);
} else {
av_log(s, AV_LOG_ERROR, "invalid codec; use pcm_s32le or pcm_s32be\n");
return
-1
;
return
AVERROR(EINVAL)
;
}
if (comment_len)
Write
Preview
Loading…
Cancel
Save