avcodec/sbcdec: Remove AVClass* from context

This decoder has no private class.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2026-03-23 11:47:32 +01:00
parent e249dfce72
commit 7e032d6963

View File

@@ -45,7 +45,6 @@ struct sbc_decoder_state {
};
typedef struct SBCDecContext {
AVClass *class;
DECLARE_ALIGNED(SBC_ALIGN, struct sbc_frame, frame);
DECLARE_ALIGNED(SBC_ALIGN, struct sbc_decoder_state, dsp);
} SBCDecContext;