summaryrefslogtreecommitdiff
path: root/libavcodec/aac.h
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-12-23 16:37:23 -0500
committerJustin Ruggles <justin.ruggles@gmail.com>2013-02-12 12:21:21 -0500
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;