diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-12-03 03:36:32 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-01-09 04:06:31 +0100 |
commit | 953924781ee1e928a7e5657231998713d2a9f3ac (patch) | |
tree | d3f15b0881d6e5d6896335518823869667fabca0 /libavcodec/ac3enc.h | |
parent | 505d4de064aff879674d0670cf1c96ca46545da3 (diff) | |
download | ffmpeg-953924781ee1e928a7e5657231998713d2a9f3ac.tar.gz |
avcodec/ac3enc: Set function pointers earlier
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/ac3enc.h')
-rw-r--r-- | libavcodec/ac3enc.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libavcodec/ac3enc.h b/libavcodec/ac3enc.h index 1e4a7405bf..b4e566b4ef 100644 --- a/libavcodec/ac3enc.h +++ b/libavcodec/ac3enc.h @@ -295,20 +295,8 @@ void ff_ac3_quantize_mantissas(AC3EncodeContext *s); void ff_ac3_output_frame(AC3EncodeContext *s, unsigned char *frame); -/* prototypes for functions in ac3enc_fixed.c and ac3enc_float.c */ - -void ff_ac3_fixed_mdct_end(AC3EncodeContext *s); -void ff_ac3_float_mdct_end(AC3EncodeContext *s); - -int ff_ac3_fixed_mdct_init(AC3EncodeContext *s); -int ff_ac3_float_mdct_init(AC3EncodeContext *s); - - /* prototypes for functions in ac3enc_template.c */ -int ff_ac3_fixed_allocate_sample_buffers(AC3EncodeContext *s); -int ff_ac3_float_allocate_sample_buffers(AC3EncodeContext *s); - int ff_ac3_fixed_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr); int ff_ac3_float_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, |