summaryrefslogtreecommitdiff
path: root/libavcodec/truehd_core_bsf.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-04-18 02:45:02 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-04-19 19:20:03 +0200
commit4bbf2a240fb5b59eaa8aef09514a96f4395c155d (patch)
tree5df9bb75776b9e90f29a99e2789f450b0e7044e2 /libavcodec/truehd_core_bsf.c
parent13171ad2e304b2a7d959429527b98c68ec5ea320 (diff)
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>
Diffstat (limited to 'libavcodec/truehd_core_bsf.c')
-rw-r--r--libavcodec/truehd_core_bsf.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/truehd_core_bsf.c b/libavcodec/truehd_core_bsf.c
index dbd05b34ca..dfe291d9e9 100644
--- a/libavcodec/truehd_core_bsf.c
+++ b/libavcodec/truehd_core_bsf.c
@@ -31,8 +31,6 @@ typedef struct AccessUnit {
} AccessUnit;
typedef struct TrueHDCoreContext {
- const AVClass *class;
-
MLPHeaderInfo hdr;
} TrueHDCoreContext;