diff options
author | Max Kellermann <max@duempel.org> | 2012-04-05 00:03:38 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-04-05 00:21:53 +0200 |
commit | 5acee73fc85e44179120a5818247fc0760038cff (patch) | |
tree | 143a8f28c8537041f08ecd64a9d3bfba35a412f4 /test/run_encoder.c | |
parent | 466c337bcb71fb6bca0384300586e7213685d53d (diff) | |
download | mpd-5acee73fc85e44179120a5818247fc0760038cff.tar.gz mpd-5acee73fc85e44179120a5818247fc0760038cff.tar.xz mpd-5acee73fc85e44179120a5818247fc0760038cff.zip |
encoder/vorbis: generate end-of-stream packet when playback ends
Add the encoder_plugin method end(). This is important for the
recorder plugin.
Diffstat (limited to 'test/run_encoder.c')
-rw-r--r-- | test/run_encoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_encoder.c b/test/run_encoder.c index 16e633029..4c05a06c7 100644 --- a/test/run_encoder.c +++ b/test/run_encoder.c @@ -121,7 +121,7 @@ int main(int argc, char **argv) encoder_to_stdout(encoder); } - ret = encoder_flush(encoder, &error); + ret = encoder_end(encoder, &error); if (!ret) { g_printerr("encoder_flush() failed: %s\n", error->message); |