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_template.c | |
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_template.c')
-rw-r--r-- | libavcodec/ac3enc_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3enc_template.c b/libavcodec/ac3enc_template.c index b74e38aea0..e8b964aa6a 100644 --- a/libavcodec/ac3enc_template.c +++ b/libavcodec/ac3enc_template.c @@ -38,7 +38,7 @@ #include "eac3enc.h" -int AC3_NAME(allocate_sample_buffers)(AC3EncodeContext *s) +static int allocate_sample_buffers(AC3EncodeContext *s) { int ch; |