diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2012-07-21 16:42:36 -0700 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2012-07-21 16:42:36 -0700 |
commit | b170b323e3ea308bde5466859814af198bd45a2a (patch) | |
tree | 131355e263bc1cc5d6715d4ed3a56474e9191243 /libavcodec/eac3enc.c | |
parent | 3db407038e9b7e0da2537fc2e19c370c45dba355 (diff) | |
download | ffmpeg-b170b323e3ea308bde5466859814af198bd45a2a.tar.gz |
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/eac3enc.c')
-rw-r--r-- | libavcodec/eac3enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/eac3enc.c b/libavcodec/eac3enc.c index 409d581eda..9aa5ea44b9 100644 --- a/libavcodec/eac3enc.c +++ b/libavcodec/eac3enc.c @@ -33,7 +33,7 @@ #define AC3ENC_TYPE AC3ENC_TYPE_EAC3 #include "ac3enc_opts_template.c" static const AVClass eac3enc_class = { "E-AC-3 Encoder", av_default_item_name, - eac3_options, LIBAVUTIL_VERSION_INT }; + ac3_options, LIBAVUTIL_VERSION_INT }; /** |