diff options
author | Max Kellermann <max@duempel.org> | 2012-10-01 23:17:13 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-10-02 00:18:18 +0200 |
commit | 43d82520502bc0c76fbd11d6e949739235166021 (patch) | |
tree | 3157bfc6f63a293509d2f3ca581f11bb6af02267 /test/run_encoder.c | |
parent | 674b4ab64735dac3b8113e09db4cdb9072ddacb7 (diff) | |
download | mpd-43d82520502bc0c76fbd11d6e949739235166021.tar.gz mpd-43d82520502bc0c76fbd11d6e949739235166021.tar.xz mpd-43d82520502bc0c76fbd11d6e949739235166021.zip |
output/recorder, test/*: invoke encoder_read() after _open()
Make sure the file header gets written at the beginning, before
_write() gets called.
Diffstat (limited to '')
-rw-r--r-- | test/run_encoder.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/run_encoder.c b/test/run_encoder.c index 397dd8572..db4d3af9b 100644 --- a/test/run_encoder.c +++ b/test/run_encoder.c @@ -106,6 +106,8 @@ int main(int argc, char **argv) return 1; } + encoder_to_stdout(encoder); + /* do it */ while ((nbytes = read(0, buffer, sizeof(buffer))) > 0) { |