You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +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:
@@ -59,6 +59,7 @@ typedef struct AlacLPCContext {
|
|||||||
} AlacLPCContext;
|
} AlacLPCContext;
|
||||||
|
|
||||||
typedef struct AlacEncodeContext {
|
typedef struct AlacEncodeContext {
|
||||||
|
const AVClass *class;
|
||||||
AVCodecContext *avctx;
|
AVCodecContext *avctx;
|
||||||
int frame_size; /**< current frame size */
|
int frame_size; /**< current frame size */
|
||||||
int verbatim; /**< current frame verbatim mode flag */
|
int verbatim; /**< current frame verbatim mode flag */
|
||||||
|
@@ -59,6 +59,7 @@ typedef enum Predictor {
|
|||||||
} Predictor;
|
} Predictor;
|
||||||
|
|
||||||
typedef struct HYuvContext {
|
typedef struct HYuvContext {
|
||||||
|
const AVClass *class;
|
||||||
AVCodecContext *avctx;
|
AVCodecContext *avctx;
|
||||||
Predictor predictor;
|
Predictor predictor;
|
||||||
GetBitContext gb;
|
GetBitContext gb;
|
||||||
|
@@ -65,6 +65,7 @@ extern const int ff_ut_pred_order[5];
|
|||||||
extern const int ff_ut_rgb_order[4];
|
extern const int ff_ut_rgb_order[4];
|
||||||
|
|
||||||
typedef struct UtvideoContext {
|
typedef struct UtvideoContext {
|
||||||
|
const AVClass *class;
|
||||||
AVCodecContext *avctx;
|
AVCodecContext *avctx;
|
||||||
BswapDSPContext bdsp;
|
BswapDSPContext bdsp;
|
||||||
HuffYUVEncDSPContext hdsp;
|
HuffYUVEncDSPContext hdsp;
|
||||||
|
Reference in New Issue
Block a user