diff options
author | Martin Storsjö <martin@martin.st> | 2016-01-22 10:52:06 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2016-01-22 17:08:08 +0200 |
commit | 87a814fdce522d45aa31aa258cb5514d7e754bff (patch) | |
tree | 31d2d4ca63b220ae15f9bdfafbcff6cb929ba589 /libavcodec/alacenc.c | |
parent | 0e9c4fe254073b209970df3e3cb84531bc388e99 (diff) | |
download | ffmpeg-87a814fdce522d45aa31aa258cb5514d7e754bff.tar.gz |
libavcodec: Add missing AVClass pointers
This fixes crashes since 243df1351.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/alacenc.c')
-rw-r--r-- | libavcodec/alacenc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/alacenc.c b/libavcodec/alacenc.c index 4857338e9c..b7ebade9b0 100644 --- a/libavcodec/alacenc.c +++ b/libavcodec/alacenc.c @@ -59,6 +59,7 @@ typedef struct AlacLPCContext { } AlacLPCContext; typedef struct AlacEncodeContext { + const AVClass *class; AVCodecContext *avctx; int frame_size; /**< current frame size */ int verbatim; /**< current frame verbatim mode flag */ |