1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

libavcodec: Add missing AVClass pointers

This fixes crashes since 243df1351.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2016-01-22 10:52:06 +02:00
parent 0e9c4fe254
commit 87a814fdce
3 changed files with 3 additions and 0 deletions

View File

@ -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 */

View File

@ -59,6 +59,7 @@ typedef enum Predictor {
} Predictor;
typedef struct HYuvContext {
const AVClass *class;
AVCodecContext *avctx;
Predictor predictor;
GetBitContext gb;

View File

@ -65,6 +65,7 @@ extern const int ff_ut_pred_order[5];
extern const int ff_ut_rgb_order[4];
typedef struct UtvideoContext {
const AVClass *class;
AVCodecContext *avctx;
BswapDSPContext bdsp;
HuffYUVEncDSPContext hdsp;