diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-04-07 19:29:49 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-04-11 12:53:26 +0200 |
commit | 2281ab5c24448782886513cc07cff6aaa6b85bfc (patch) | |
tree | 3088132b2640b21dcfc38e009cb201e08bc10214 /libavcodec/ac3enc.h | |
parent | 6c55cb95ed9e15cc84985fdc539dffe5c0f7e4a5 (diff) | |
download | ffmpeg-2281ab5c24448782886513cc07cff6aaa6b85bfc.tar.gz |
avcodec/ac3enc: Avoid function pointers to initialize MDCT
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/ac3enc.h')
-rw-r--r-- | libavcodec/ac3enc.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/ac3enc.h b/libavcodec/ac3enc.h index 271f0eb8eb..227744d27f 100644 --- a/libavcodec/ac3enc.h +++ b/libavcodec/ac3enc.h @@ -257,9 +257,6 @@ typedef struct AC3EncodeContext { /** fixed vs. float function pointers */ void (*encode_frame)(struct AC3EncodeContext *s); - /* fixed vs. float function pointers */ - int (*mdct_init)(struct AC3EncodeContext *s); - /* AC-3 vs. E-AC-3 function pointers */ void (*output_frame_header)(struct AC3EncodeContext *s); } AC3EncodeContext; |