diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-12-23 16:37:23 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2013-02-12 12:21:21 -0500 |
commit | ffd2123095bd1ab5109c78f78c72759bb838805b (patch) | |
tree | 5e8de9c07e5bfda1e635ce5efaac225b7a9c82dd /libavcodec/aac.h | |
parent | a3de4010c2d018ce37a1bfa50b35a17b958d670e (diff) | |
download | ffmpeg-ffd2123095bd1ab5109c78f78c72759bb838805b.tar.gz |
aac: decode directly to the user-provided AVFrame
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r-- | libavcodec/aac.h | 2 |
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; |