projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3ac5b35
)
filter: Call the convert function even if the input buffer is empty.
author
Andre Noll
<maan@systemlinux.org>
Fri, 28 Nov 2008 23:58:03 +0000
(
00:58
+0100)
committer
Andre Noll
<maan@systemlinux.org>
Fri, 28 Nov 2008 23:58:03 +0000
(
00:58
+0100)
At least the ogg vorbis decoder might still produce output in this
case.
filter_chain.c
patch
|
blob
|
history
diff --git
a/filter_chain.c
b/filter_chain.c
index
1a29024
..
fa8637e
100644
(file)
--- a/
filter_chain.c
+++ b/
filter_chain.c
@@
-124,7
+124,7
@@
again:
conv = 0;
FOR_EACH_FILTER_NODE(fn, fc, i) {
struct filter *f = filters + fn->filter_num;
- if (
*loaded &&
fn->loaded < fn->bufsize) {
+ if (fn->loaded < fn->bufsize) {
size_t size, old_fn_loaded = fn->loaded;
// PARA_DEBUG_LOG("fc %p loaded: %zd, calling %s convert\n",
// fc, *loaded, fn->filter->name);