Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-12-24 01:37:23 +0400
committerJustin Ruggles <justin.ruggles@gmail.com>2013-02-12 21:21:21 +0400
commitffd2123095bd1ab5109c78f78c72759bb838805b (patch)
tree5e8de9c07e5bfda1e635ce5efaac225b7a9c82dd /libavcodec/aac.h
parenta3de4010c2d018ce37a1bfa50b35a17b958d670e (diff)
aac: decode directly to the user-provided AVFrame
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r--libavcodec/aac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h
index dd337a0a75..97f46e26a2 100644
--- a/libavcodec/aac.h
+++ b/libavcodec/aac.h
@@ -262,7 +262,7 @@ typedef struct ChannelElement {
*/
typedef struct AACContext {
AVCodecContext *avctx;
- AVFrame frame;
+ AVFrame *frame;
int is_saved; ///< Set if elements have stored overlap from previous frame.
DynamicRangeControl che_drc;