diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-11-09 06:07:06 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-11-10 10:33:19 +0100 |
commit | 905cdcaa9d081d3d945ce555b27b43a75c3af57b (patch) | |
tree | 8a6a4a2101c0513852d7da7c385712d94fd2d8b3 /doc | |
parent | 6a62795d4051f435a9a2c59395d96913693922f8 (diff) | |
download | ffmpeg-streaming-905cdcaa9d081d3d945ce555b27b43a75c3af57b.zip ffmpeg-streaming-905cdcaa9d081d3d945ce555b27b43a75c3af57b.tar.gz |
examples/decode_audio: Add missing header for av_free()
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/decode_audio.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/examples/decode_audio.c b/doc/examples/decode_audio.c index 647893c..b56a5ee 100644 --- a/doc/examples/decode_audio.c +++ b/doc/examples/decode_audio.c @@ -29,9 +29,10 @@ #include <stdlib.h> #include <string.h> -#include "libavcodec/avcodec.h" - #include "libavutil/frame.h" +#include "libavutil/mem.h" + +#include "libavcodec/avcodec.h" #define AUDIO_INBUF_SIZE 20480 #define AUDIO_REFILL_THRESH 4096 |