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
examples/filtering_audio: do not stop on decode error.
Decode errors can happen with concatenated MP3s with different formats.
tags/n0.11
Nicolas George
13 years ago
parent
8f19483d06
commit
a0a0199da3
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
doc/examples/filtering_audio.c
+ 1
- 1
doc/examples/filtering_audio.c
View File
@@ -199,7 +199,7 @@ int main(int argc, char **argv)
av_free_packet(&packet);
if (ret < 0) {
av_log(NULL, AV_LOG_ERROR, "Error decoding audio\n");
break
;
continue
;
}
if (got_frame) {
Write
Preview
Loading…
Cancel
Save