From fee0f1de2c6a9924acb74013436dbea8f2bd1ecb Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 19 Oct 2016 21:56:22 +0200 Subject: examples/decode_audio: flush the decoder --- doc/examples/decode_audio.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'doc/examples/decode_audio.c') diff --git a/doc/examples/decode_audio.c b/doc/examples/decode_audio.c index e7b27d3ada..d952b4923b 100644 --- a/doc/examples/decode_audio.c +++ b/doc/examples/decode_audio.c @@ -179,6 +179,11 @@ int main(int argc, char **argv) } } + /* flush the decoder */ + pkt->data = NULL; + pkt->size = 0; + decode(c, pkt, decoded_frame, outfile); + fclose(outfile); fclose(f); -- cgit v1.2.3