Browse Source

Merge commit '905cdcaa9d081d3d945ce555b27b43a75c3af57b'

* commit '905cdcaa9d081d3d945ce555b27b43a75c3af57b':
  examples/decode_audio: Add missing header for av_free()

Merged-by: James Almer <jamrial@gmail.com>
tags/n3.3
James Almer 8 years ago
parent
commit
ebe9808aaa
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      doc/examples/decode_audio.c

+ 3
- 2
doc/examples/decode_audio.c View File

@@ -31,9 +31,10 @@
#include <stdlib.h>
#include <string.h>

#include <libavcodec/avcodec.h>
#include "libavutil/frame.h"
#include "libavutil/mem.h"

#include <libavutil/frame.h>
#include "libavcodec/avcodec.h"

#define AUDIO_INBUF_SIZE 20480
#define AUDIO_REFILL_THRESH 4096


Loading…
Cancel
Save