avcodec/truehd_core_bsf: Remove unused AVClass pointer

The context structure of the truehd_core bsf had a pointer to a const
AVClass as its first member; yet this bsf does not have any AVClass
associated with it, so that this pointer is always NULL. So remove it.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
Andreas Rheinhardt 2020-04-18 02:45:02 +02:00
parent 13171ad2e3
commit 4bbf2a240f
1 changed files with 0 additions and 2 deletions

View File

@ -31,8 +31,6 @@ typedef struct AccessUnit {
} AccessUnit;
typedef struct TrueHDCoreContext {
const AVClass *class;
MLPHeaderInfo hdr;
} TrueHDCoreContext;