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
3ffab361
Commit
3ffab361
authored
Jan 06, 2007
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
variable renaming: dts --> libdts
Originally committed as revision 7415 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
f8904fd9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
configure
configure
+7
-7
Makefile
libavcodec/Makefile
+1
-1
allcodecs.c
libavcodec/allcodecs.c
+1
-1
No files found.
configure
View file @
3ffab361
...
...
@@ -76,7 +76,7 @@ show_help(){
echo
" --enable-mingwce enable MinGW native/cross WinCE compile"
echo
" --enable-a52 enable GPLed liba52 support [default=no]"
echo
" --enable-a52bin open liba52.so.0 at runtime [default=no]"
echo
" --enable-dts enable GPLed
DTS
support [default=no]"
echo
" --enable-dts enable GPLed
libdts
support [default=no]"
echo
" --enable-pp enable GPLed postprocessing support [default=no]"
echo
" --enable-static build static libraries [default=yes]"
echo
" --disable-static do not build static libraries [default=no]"
...
...
@@ -417,7 +417,6 @@ CONFIG_LIST='
beos_netserver
bktr
dc1394
dts
dv1394
faac
faad
...
...
@@ -429,6 +428,7 @@ CONFIG_LIST='
ipv6
liba52
liba52bin
libdts
libgsm
libnut
libogg
...
...
@@ -594,6 +594,7 @@ liba52="no"
liba52bin
=
"no"
libgsm
=
"no"
mp3lame
=
"no"
libdts
=
"no"
libnut
=
"no"
libogg
=
"no"
libvorbis
=
"no"
...
...
@@ -602,7 +603,6 @@ faadbin="no"
faac
=
"no"
xvid
=
"no"
x264
=
"no"
dts
=
"no"
pp
=
"no"
mingw32
=
"no"
wince
=
"no"
...
...
@@ -938,7 +938,7 @@ for opt do
;;
--enable-a52bin
)
liba52bin
=
"yes"
;;
--enable-dts
)
dts
=
"yes"
--enable-dts
)
lib
dts
=
"yes"
;;
--enable-pp
)
pp
=
"yes"
;;
...
...
@@ -1144,7 +1144,7 @@ if test "$gpl" != "yes"; then
die
"x264 is under GPL and --enable-gpl is not specified."
fi
if
test
"
$dts
"
!=
"no"
;
then
if
test
"
$
lib
dts
"
!=
"no"
;
then
die
"libdts is under GPL and --enable-gpl is not specified."
fi
...
...
@@ -1463,7 +1463,7 @@ if enabled pthreads; then
fi
# these are off by default, so fail if requested and not available
enabled
dts
&&
require libdts dts.h dts_init
-ldts
-lm
enabled
libdts
&&
require libdts dts.h dts_init
-ldts
-lm
enabled libgsm
&&
require libgsm gsm.h gsm_create
-lgsm
enabled mp3lame
&&
require LAME lame/lame.h lame_init
-lmp3lame
-lm
enabled libvorbis
&&
require libvorbis vorbis/vorbisenc.h vorbis_info_init
-lvorbis
-lvorbisenc
-logg
...
...
@@ -1794,7 +1794,7 @@ echo "Sun medialib support $mlib"
echo
"AVISynth enabled
$avisynth
"
echo
"liba52 support
$liba52
"
echo
"liba52 dlopened
$liba52bin
"
echo
"libdts support
$dts
"
echo
"libdts support
$
lib
dts
"
echo
"libfaac enabled
$faac
"
echo
"libfaad enabled
$faad
"
echo
"faadbin enabled
$faadbin
"
...
...
libavcodec/Makefile
View file @
3ffab361
...
...
@@ -264,7 +264,7 @@ OBJS-$(CONFIG_LIBA52)$(CONFIG_LIBA52BIN) += liba52/bit_allocate.o \
liba52/resample.o
# currently using libdts for dts decoding
OBJS-$(CONFIG_
DTS)
+=
dtsdec.o
OBJS-$(CONFIG_
LIBDTS)
+=
dtsdec.o
OBJS-$(CONFIG_AMR)
+=
amr.o
OBJS-$(CONFIG_AMR_NB)
+=
amr_float/sp_dec.o
\
...
...
libavcodec/allcodecs.c
View file @
3ffab361
...
...
@@ -177,7 +177,7 @@ void avcodec_register_all(void)
#endif
REGISTER_DECODER
(
COOK
,
cook
);
REGISTER_DECODER
(
DSICINAUDIO
,
dsicinaudio
);
#ifdef CONFIG_DTS
#ifdef CONFIG_
LIB
DTS
REGISTER_DECODER
(
DTS
,
dts
);
#endif
#ifdef CONFIG_FAAC
...
...
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