Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2012-07-22 03:42:36 +0400
committerRonald S. Bultje <rsbultje@gmail.com>2012-07-22 03:42:36 +0400
commitb170b323e3ea308bde5466859814af198bd45a2a (patch)
tree131355e263bc1cc5d6715d4ed3a56474e9191243 /libavcodec/ac3enc_fixed.c
parent3db407038e9b7e0da2537fc2e19c370c45dba355 (diff)
ac3: don't use different names for option tables in the template file.
The variables which are declared in the teplate file are static and therefore there is no symbol clash.
Diffstat (limited to 'libavcodec/ac3enc_fixed.c')
-rw-r--r--libavcodec/ac3enc_fixed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3enc_fixed.c b/libavcodec/ac3enc_fixed.c
index cc8f158c9d..09a011cbf7 100644
--- a/libavcodec/ac3enc_fixed.c
+++ b/libavcodec/ac3enc_fixed.c
@@ -35,7 +35,7 @@
#define AC3ENC_TYPE AC3ENC_TYPE_AC3_FIXED
#include "ac3enc_opts_template.c"
static const AVClass ac3enc_class = { "Fixed-Point AC-3 Encoder", av_default_item_name,
- ac3fixed_options, LIBAVUTIL_VERSION_INT };
+ ac3_options, LIBAVUTIL_VERSION_INT };
#include "ac3enc_template.c"