projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
657a20a
)
src/io/source_avcodec.c: hide EAGAIN warning, skip to next frame immediately
author
Paul Brossier
<piem@piem.org>
Sat, 25 Mar 2017 10:47:27 +0000
(11:47 +0100)
committer
Paul Brossier
<piem@piem.org>
Sat, 25 Mar 2017 10:47:27 +0000
(11:47 +0100)
src/io/source_avcodec.c
patch
|
blob
|
history
diff --git
a/src/io/source_avcodec.c
b/src/io/source_avcodec.c
index
ede096c
..
02943de
100644
(file)
--- a/
src/io/source_avcodec.c
+++ b/
src/io/source_avcodec.c
@@
-374,7
+374,8
@@
void aubio_source_avcodec_readframe(aubio_source_avcodec_t *s, uint_t * read_sam
}
if (ret < 0) {
if (ret == AVERROR(EAGAIN)) {
- AUBIO_WRN("source_avcodec: output is not available right now - user must try to send new input\n");
+ //AUBIO_WRN("source_avcodec: output is not available right now - user must try to send new input\n");
+ goto beach;
} else if (ret == AVERROR_EOF) {
AUBIO_WRN("source_avcodec: the decoder has been fully flushed, and there will be no more output frames\n");
} else {