diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-06-10 14:57:19 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-06-13 16:49:35 -0400 |
commit | e0cc66df61664bb6f9271d9aae3c778e1f906b4c (patch) | |
tree | e727a74f9c318b4c40f83e22d4ddaa7282c54c94 /libavcodec/ac3enc_opts_template.c | |
parent | e754dfc0bba4f81fe797f240fca94fea5dfd925e (diff) | |
download | ffmpeg-e0cc66df61664bb6f9271d9aae3c778e1f906b4c.tar.gz |
ac3enc: split templated float vs. fixed functions into a separate file.
Function pointers are used for templated functions instead of needlessly
duplicating many functions.
Diffstat (limited to 'libavcodec/ac3enc_opts_template.c')
-rw-r--r-- | libavcodec/ac3enc_opts_template.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/ac3enc_opts_template.c b/libavcodec/ac3enc_opts_template.c index e16e0d0878..39138a1083 100644 --- a/libavcodec/ac3enc_opts_template.c +++ b/libavcodec/ac3enc_opts_template.c @@ -19,6 +19,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/opt.h" +#include "ac3.h" + #if AC3ENC_TYPE == AC3ENC_TYPE_AC3_FIXED static const AVOption ac3fixed_options[] = { #elif AC3ENC_TYPE == AC3ENC_TYPE_AC3 |