Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
6ea67bbb
Commit
6ea67bbb
authored
Aug 07, 2007
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable the native AC-3 decoder
Originally committed as revision 9968 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
5eac5f29
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
1 deletion
+8
-1
Changelog
Changelog
+1
-0
configure
configure
+4
-0
Makefile
libavcodec/Makefile
+1
-0
allcodecs.c
libavcodec/allcodecs.c
+1
-1
allcodecs.h
libavcodec/allcodecs.h
+1
-0
No files found.
Changelog
View file @
6ea67bbb
...
...
@@ -90,6 +90,7 @@ version <next>
- RoQ video encoder
- QTRLE encoder
- OS/2 support removed
- AC-3 decoder
version 0.4.9-pre1:
...
...
configure
View file @
6ea67bbb
...
...
@@ -719,6 +719,7 @@ mmx_deps="x86"
ssse3_deps
=
"x86"
# decoders / encoders
ac3_decoder_deps
=
"gpl"
dxa_decoder_deps
=
"zlib"
flashsv_decoder_deps
=
"zlib"
flashsv_encoder_deps
=
"zlib"
...
...
@@ -1592,6 +1593,9 @@ enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaa
enabled libfaad
&&
require2 libfaad faad.h faacDecOpen
-lfaad
enabled avisynth
&&
require2 vfw32
"windows.h vfw.h"
AVIFileInit
-lvfw32
# disable the native AC-3 decoder if liba52 is enabled
enabled liba52
&&
disable ac3_decoder
_restrict
=
for
restrict_keyword
in
restrict __restrict__ __restrict
;
do
check_cc
<<
EOF
&& _restrict=
$restrict_keyword
&& break
...
...
libavcodec/Makefile
View file @
6ea67bbb
...
...
@@ -32,6 +32,7 @@ OBJS= bitstream.o \
HEADERS
=
avcodec.h opt.h
OBJS-$(CONFIG_AASC_DECODER)
+=
aasc.o
OBJS-$(CONFIG_AC3_DECODER)
+=
ac3dec.o
ac3tab.o
ac3.o
mdct.o
fft.o
OBJS-$(CONFIG_AC3_ENCODER)
+=
ac3enc.o
ac3tab.o
ac3.o
OBJS-$(CONFIG_ALAC_DECODER)
+=
alac.o
OBJS-$(CONFIG_ASV1_DECODER)
+=
asv1.o
...
...
libavcodec/allcodecs.c
View file @
6ea67bbb
...
...
@@ -166,7 +166,7 @@ void avcodec_register_all(void)
/* audio codecs */
REGISTER_DECODER
(
MPEG4AAC
,
mpeg4aac
);
REGISTER_ENC
ODER
(
AC3
,
ac3
);
REGISTER_ENC
DEC
(
AC3
,
ac3
);
REGISTER_DECODER
(
ALAC
,
alac
);
REGISTER_DECODER
(
ATRAC3
,
atrac3
);
REGISTER_DECODER
(
COOK
,
cook
);
...
...
libavcodec/allcodecs.h
View file @
6ea67bbb
...
...
@@ -77,6 +77,7 @@ extern AVCodec wmv2_encoder;
extern
AVCodec
zmbv_encoder
;
extern
AVCodec
aasc_decoder
;
extern
AVCodec
ac3_decoder
;
extern
AVCodec
alac_decoder
;
extern
AVCodec
asv1_decoder
;
extern
AVCodec
asv2_decoder
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment