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
e528cdac
Commit
e528cdac
authored
Mar 17, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "replace FFMPEG with LIBAV in FFMPEG_CONFIGURATION"
This reverts commit
29ba0911
.
parent
0cb88628
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
21 additions
and
21 deletions
+21
-21
Makefile
Makefile
+1
-1
cmdutils.c
cmdutils.c
+2
-2
configure
configure
+11
-11
utils.c
libavcodec/utils.c
+1
-1
avdevice.c
libavdevice/avdevice.c
+1
-1
avfilter.c
libavfilter/avfilter.c
+1
-1
utils.c
libavformat/utils.c
+1
-1
utils.c
libavutil/utils.c
+1
-1
postprocess.c
libpostproc/postprocess.c
+1
-1
utils.c
libswscale/utils.c
+1
-1
No files found.
Makefile
View file @
e528cdac
...
...
@@ -177,7 +177,7 @@ distclean::
$(RM)
version.h config.
*
libavutil/avconfig.h
config
:
$(SRC_PATH)
/configure
$
(
value
LIBAV
_CONFIGURATION
)
$(SRC_PATH)
/configure
$
(
value
FFMPEG
_CONFIGURATION
)
# regression tests
...
...
cmdutils.c
View file @
e528cdac
...
...
@@ -399,7 +399,7 @@ static int warned_cfg = 0;
} \
if (flags & SHOW_CONFIG) { \
const char *cfg = libname##_configuration(); \
if (strcmp(
LIBAV_CONFIGURATION, cfg)) {
\
if (strcmp(
FFMPEG_CONFIGURATION, cfg)) {
\
if (!warned_cfg) { \
fprintf(outstream, \
"%sWARNING: library configuration mismatch\n", \
...
...
@@ -429,7 +429,7 @@ void show_banner(void)
program_name
,
program_birth_year
,
this_year
);
fprintf
(
stderr
,
" built on %s %s with %s %s
\n
"
,
__DATE__
,
__TIME__
,
CC_TYPE
,
CC_VERSION
);
fprintf
(
stderr
,
" configuration: "
LIBAV
_CONFIGURATION
"
\n
"
);
fprintf
(
stderr
,
" configuration: "
FFMPEG
_CONFIGURATION
"
\n
"
);
print_all_libs_info
(
stderr
,
INDENT
|
SHOW_CONFIG
);
print_all_libs_info
(
stderr
,
INDENT
|
SHOW_VERSION
);
}
...
...
configure
View file @
e528cdac
...
...
@@ -1672,7 +1672,7 @@ for v in "$@"; do
r
=
${
v
#*=
}
l
=
${
v
%
"
$r
"
}
r
=
$(
sh_quote
"
$r
"
)
LIBAV_CONFIGURATION
=
"
${
LIBAV
_CONFIGURATION
#
}
${
l
}${
r
}
"
FFMPEG_CONFIGURATION
=
"
${
FFMPEG
_CONFIGURATION
#
}
${
l
}${
r
}
"
done
find_things
(){
...
...
@@ -1784,7 +1784,7 @@ done
disabled logging
&&
logfile
=
/dev/null
echo
"#
$0
$
LIBAV
_CONFIGURATION
"
>
$logfile
echo
"#
$0
$
FFMPEG
_CONFIGURATION
"
>
$logfile
set
>>
$logfile
test
-n
"
$cross_prefix
"
&&
enable
cross_compile
...
...
@@ -2479,7 +2479,7 @@ case $target_os in
;;
esac
echo
"config:
$arch
:
$subarch
:
$cpu
:
$target_os
:
$cc_ident
:
$
LIBAV
_CONFIGURATION
"
>
config.fate
echo
"config:
$arch
:
$subarch
:
$cpu
:
$target_os
:
$cc_ident
:
$
FFMPEG
_CONFIGURATION
"
>
config.fate
check_cpp_condition stdlib.h
"defined(__PIC__) || defined(__pic__) || defined(PIC)"
&&
enable
pic
...
...
@@ -3202,9 +3202,9 @@ config_files="$TMPH config.mak"
cat
>
config.mak
<<
EOF
# Automatically generated by configure - do not modify!
ifndef
LIBAV
_CONFIG_MAK
LIBAV
_CONFIG_MAK=1
LIBAV_CONFIGURATION=
$LIBAV
_CONFIGURATION
ifndef
FFMPEG
_CONFIG_MAK
FFMPEG
_CONFIG_MAK=1
FFMPEG_CONFIGURATION=
$FFMPEG
_CONFIGURATION
prefix=
$prefix
LIBDIR=\
$(
DESTDIR
)
$libdir
SHLIBDIR=\
$(
DESTDIR
)
$shlibdir
...
...
@@ -3293,9 +3293,9 @@ get_version LIBAVFILTER libavfilter/avfilter.h
cat
>
$TMPH
<<
EOF
/* Automatically generated by configure - do not modify! */
#ifndef
LIBAV
_CONFIG_H
#define
LIBAV
_CONFIG_H
#define
LIBAV_CONFIGURATION "
$(
c_escape
$LIBAV
_CONFIGURATION
)
"
#ifndef
FFMPEG
_CONFIG_H
#define
FFMPEG
_CONFIG_H
#define
FFMPEG_CONFIGURATION "
$(
c_escape
$FFMPEG
_CONFIGURATION
)
"
#define FFMPEG_LICENSE "
$(
c_escape
$license
)
"
#define FFMPEG_DATADIR "
$(
eval
c_escape
$datadir
)
"
#define CC_TYPE "
$cc_type
"
...
...
@@ -3347,8 +3347,8 @@ LAVFI_TESTS=$(print_enabled -n _test $LAVFI_TESTS)
SEEK_TESTS=
$(
print_enabled
-n
_test
$SEEK_TESTS
)
EOF
echo
"#endif /*
LIBAV
_CONFIG_H */"
>>
$TMPH
echo
"endif #
LIBAV
_CONFIG_MAK"
>>
config.mak
echo
"#endif /*
FFMPEG
_CONFIG_H */"
>>
$TMPH
echo
"endif #
FFMPEG
_CONFIG_MAK"
>>
config.mak
# Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
cp_if_changed
$TMPH
config.h
...
...
libavcodec/utils.c
View file @
e528cdac
...
...
@@ -1078,7 +1078,7 @@ unsigned avcodec_version( void )
const
char
*
avcodec_configuration
(
void
)
{
return
LIBAV
_CONFIGURATION
;
return
FFMPEG
_CONFIGURATION
;
}
const
char
*
avcodec_license
(
void
)
...
...
libavdevice/avdevice.c
View file @
e528cdac
...
...
@@ -25,7 +25,7 @@ unsigned avdevice_version(void)
const
char
*
avdevice_configuration
(
void
)
{
return
LIBAV
_CONFIGURATION
;
return
FFMPEG
_CONFIGURATION
;
}
const
char
*
avdevice_license
(
void
)
...
...
libavfilter/avfilter.c
View file @
e528cdac
...
...
@@ -34,7 +34,7 @@ unsigned avfilter_version(void) {
const
char
*
avfilter_configuration
(
void
)
{
return
LIBAV
_CONFIGURATION
;
return
FFMPEG
_CONFIGURATION
;
}
const
char
*
avfilter_license
(
void
)
...
...
libavformat/utils.c
View file @
e528cdac
...
...
@@ -54,7 +54,7 @@ unsigned avformat_version(void)
const
char
*
avformat_configuration
(
void
)
{
return
LIBAV
_CONFIGURATION
;
return
FFMPEG
_CONFIGURATION
;
}
const
char
*
avformat_license
(
void
)
...
...
libavutil/utils.c
View file @
e528cdac
...
...
@@ -31,7 +31,7 @@ unsigned avutil_version(void)
const
char
*
avutil_configuration
(
void
)
{
return
LIBAV
_CONFIGURATION
;
return
FFMPEG
_CONFIGURATION
;
}
const
char
*
avutil_license
(
void
)
...
...
libpostproc/postprocess.c
View file @
e528cdac
...
...
@@ -94,7 +94,7 @@ unsigned postproc_version(void)
const
char
*
postproc_configuration
(
void
)
{
return
LIBAV
_CONFIGURATION
;
return
FFMPEG
_CONFIGURATION
;
}
const
char
*
postproc_license
(
void
)
...
...
libswscale/utils.c
View file @
e528cdac
...
...
@@ -53,7 +53,7 @@ unsigned swscale_version(void)
const
char
*
swscale_configuration
(
void
)
{
return
LIBAV
_CONFIGURATION
;
return
FFMPEG
_CONFIGURATION
;
}
const
char
*
swscale_license
(
void
)
...
...
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