Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
086f0dc8
Commit
086f0dc8
authored
Aug 18, 2002
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
the mp3 demux now parses id3 tags into the info structures if libid3tag
is available
parent
3dff442e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
293 additions
and
126 deletions
+293
-126
Makefile.opts.in
Makefile.opts.in
+1
-0
configure
configure
+157
-114
configure.in
configure.in
+6
-0
modules/demux/mpeg/audio.c
modules/demux/mpeg/audio.c
+129
-12
No files found.
Makefile.opts.in
View file @
086f0dc8
...
...
@@ -133,6 +133,7 @@ qt_LDFLAGS = @qt_LDFLAGS@
qte_LDFLAGS
=
@qte_LDFLAGS@
rc_LDFLAGS
=
@rc_LDFLAGS@
sdl_LDFLAGS
=
@sdl_LDFLAGS@
audio_LDFLAGS
=
@audio_LDFLAGS@
ts_dvbpsi_LDFLAGS
=
@ts_dvbpsi_LDFLAGS@
vcd_LDFLAGS
=
@vcd_LDFLAGS@
vorbis_LDFLAGS
=
@vorbis_LDFLAGS@
...
...
configure
View file @
086f0dc8
...
...
@@ -6976,6 +6976,47 @@ fi
fi
fi
for
ac_hdr
in
id3tag.h
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:6977: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 6982 "configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:6987:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
eval
"ac_cv_header_
$ac_safe
=yes"
else
echo
"
$ac_err
"
>
&5
echo
"configure: failed program was:"
>
&5
cat
conftest.
$ac_ext
>
&5
rm
-rf
conftest
*
eval
"ac_cv_header_
$ac_safe
=no"
fi
rm
-f
conftest
*
fi
if
eval
"test
\"
`
echo
'$ac_cv_header_'
$ac_safe
`
\"
= yes"
;
then
echo
"
$ac_t
""yes"
1>&6
ac_tr_hdr
=
HAVE_
`
echo
$ac_hdr
|
sed
'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'
`
cat
>>
confdefs.h
<<
EOF
#define
$ac_tr_hdr
1
EOF
audio_LDFLAGS
=
"
${
audio_LDFLAGS
}
-lz -lid3tag"
else
echo
"
$ac_t
""no"
1>&6
fi
done
# Check whether --enable-ffmpeg or --disable-ffmpeg was given.
if
test
"
${
enable_ffmpeg
+set
}
"
=
set
;
then
enableval
=
"
$enable_ffmpeg
"
...
...
@@ -7015,7 +7056,7 @@ fi
if
test
"x
${
with_ffmpeg_tree
}
"
!=
"x"
then
echo
$ac_n
"checking for libavcodec.a in
${
with_ffmpeg_tree
}
""...
$ac_c
"
1>&6
echo
"configure:70
12
: checking for libavcodec.a in
${
with_ffmpeg_tree
}
"
>
&5
echo
"configure:70
53
: checking for libavcodec.a in
${
with_ffmpeg_tree
}
"
>
&5
real_ffmpeg_tree
=
"
`
cd
${
with_ffmpeg_tree
}
2>/dev/null
&&
pwd
`
"
if
test
"x
${
real_ffmpeg_tree
}
"
=
x
then
...
...
@@ -7036,7 +7077,7 @@ echo "configure:7012: checking for libavcodec.a in ${with_ffmpeg_tree}" >&5
CFLAGS
=
"
${
save_CFLAGS
}
${
ffmpeg_CFLAGS
}
"
LDFLAGS
=
"
${
save_LDFLAGS
}
${
ffmpeg_LDFLAGS
}
"
echo
$ac_n
"checking for avcodec_init in -lavcodec""...
$ac_c
"
1>&6
echo
"configure:70
33
: checking for avcodec_init in -lavcodec"
>
&5
echo
"configure:70
74
: checking for avcodec_init in -lavcodec"
>
&5
ac_lib_var
=
`
echo
avcodec
'_'
avcodec_init |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -7044,7 +7085,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lavcodec
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 70
41
"configure"
#line 70
82
"configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
...
...
@@ -7055,7 +7096,7 @@ int main() {
avcodec_init()
; return 0; }
EOF
if
{
(
eval echo
configure:70
52
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:70
93
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -7113,7 +7154,7 @@ fi
if
test
"x
${
with_faad_tree
}
"
!=
"x"
then
echo
$ac_n
"checking for libfaad.a in
${
with_faad_tree
}
""...
$ac_c
"
1>&6
echo
"configure:71
10
: checking for libfaad.a in
${
with_faad_tree
}
"
>
&5
echo
"configure:71
51
: checking for libfaad.a in
${
with_faad_tree
}
"
>
&5
real_faad_tree
=
"
`
cd
${
with_faad_tree
}
2>/dev/null
&&
pwd
`
"
if
test
"x
${
real_faad_tree
}
"
=
x
then
...
...
@@ -7137,17 +7178,17 @@ echo "configure:7110: checking for libfaad.a in ${with_faad_tree}" >&5
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:71
34
: checking for
$ac_hdr
"
>
&5
echo
"configure:71
75
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 71
39
"configure"
#line 71
80
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:71
44
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:71
85
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -7175,7 +7216,7 @@ fi
done
echo
$ac_n
"checking for faacDecOpen in -lfaad""...
$ac_c
"
1>&6
echo
"configure:7
172
: checking for faacDecOpen in -lfaad"
>
&5
echo
"configure:7
213
: checking for faacDecOpen in -lfaad"
>
&5
ac_lib_var
=
`
echo
faad
'_'
faacDecOpen |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -7183,7 +7224,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lfaad
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 7
180
"configure"
#line 7
221
"configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
...
...
@@ -7194,7 +7235,7 @@ int main() {
faacDecOpen()
; return 0; }
EOF
if
{
(
eval echo
configure:7
191
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:7
232
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -7238,17 +7279,17 @@ then
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:72
35
: checking for
$ac_hdr
"
>
&5
echo
"configure:72
76
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 72
40
"configure"
#line 72
81
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:72
45
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:72
86
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -7305,7 +7346,7 @@ fi
{
echo
"configure: error:
${
with_a52_tree
}
directory doesn't exist"
1>&2
;
exit
1
;
}
fi
echo
$ac_n
"checking for a52.h in
${
real_a52_tree
}
/include""...
$ac_c
"
1>&6
echo
"configure:73
02
: checking for a52.h in
${
real_a52_tree
}
/include"
>
&5
echo
"configure:73
43
: checking for a52.h in
${
real_a52_tree
}
/include"
>
&5
if
test
-f
${
real_a52_tree
}
/include/a52.h
then
echo
"
$ac_t
""yes"
1>&6
...
...
@@ -7313,7 +7354,7 @@ echo "configure:7302: checking for a52.h in ${real_a52_tree}/include" >&5
a52_LDFLAGS
=
"
${
a52_LDFLAGS
}
-L
${
real_a52_tree
}
/liba52/.libs"
LDFLAGS
=
"
${
save_LDFLAGS
}
${
a52_LDFLAGS
}
"
echo
$ac_n
"checking for a52_free in -la52""...
$ac_c
"
1>&6
echo
"configure:73
10
: checking for a52_free in -la52"
>
&5
echo
"configure:73
51
: checking for a52_free in -la52"
>
&5
ac_lib_var
=
`
echo
a52
'_'
a52_free |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -7321,7 +7362,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-la52 -lm
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 73
18
"configure"
#line 73
59
"configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
...
...
@@ -7332,7 +7373,7 @@ int main() {
a52_free()
; return 0; }
EOF
if
{
(
eval echo
configure:73
29
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:73
70
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -7386,17 +7427,17 @@ fi
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:7
383
: checking for
$ac_hdr
"
>
&5
echo
"configure:7
424
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 7
388
"configure"
#line 7
429
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:7
393
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:7
434
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -7418,7 +7459,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
EOF
echo
$ac_n
"checking for a52_free in -la52""...
$ac_c
"
1>&6
echo
"configure:74
15
: checking for a52_free in -la52"
>
&5
echo
"configure:74
56
: checking for a52_free in -la52"
>
&5
ac_lib_var
=
`
echo
a52
'_'
a52_free |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -7426,7 +7467,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-la52 -lm
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 74
23
"configure"
#line 74
64
"configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
...
...
@@ -7437,7 +7478,7 @@ int main() {
a52_free()
; return 0; }
EOF
if
{
(
eval echo
configure:74
34
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:74
75
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -7501,17 +7542,17 @@ then
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:7
498
: checking for
$ac_hdr
"
>
&5
echo
"configure:7
539
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 75
03
"configure"
#line 75
44
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:75
08
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:75
49
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -7554,17 +7595,17 @@ then
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:75
51
: checking for
$ac_hdr
"
>
&5
echo
"configure:75
92
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 75
56
"configure"
#line 75
97
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:7
561
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:7
602
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -7616,17 +7657,17 @@ if test "x${enable_x11}" != "xno" &&
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:76
13
: checking for
$ac_hdr
"
>
&5
echo
"configure:76
54
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 76
18
"configure"
#line 76
59
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:76
23
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:76
64
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -7672,17 +7713,17 @@ if test "x${enable_xvideo}" != "xno" &&
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:7
669
: checking for
$ac_hdr
"
>
&5
echo
"configure:7
710
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 7
674
"configure"
#line 7
715
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:7
679
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:7
720
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -7705,7 +7746,7 @@ EOF
CFLAGS
=
"
${
save_CFLAGS
}
-L
${
x_libraries
}
-lX11 -lXext"
echo
$ac_n
"checking for XvPutImage in -lXv_pic""...
$ac_c
"
1>&6
echo
"configure:77
02
: checking for XvPutImage in -lXv_pic"
>
&5
echo
"configure:77
43
: checking for XvPutImage in -lXv_pic"
>
&5
ac_lib_var
=
`
echo
Xv_pic
'_'
XvPutImage |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -7713,7 +7754,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lXv_pic
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 77
10
"configure"
#line 77
51
"configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
...
...
@@ -7724,7 +7765,7 @@ int main() {
XvPutImage()
; return 0; }
EOF
if
{
(
eval echo
configure:77
21
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:77
62
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -7746,7 +7787,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
else
echo
"
$ac_t
""no"
1>&6
echo
$ac_n
"checking for XvPutImage in -lXv""...
$ac_c
"
1>&6
echo
"configure:77
43
: checking for XvPutImage in -lXv"
>
&5
echo
"configure:77
84
: checking for XvPutImage in -lXv"
>
&5
ac_lib_var
=
`
echo
Xv
'_'
XvPutImage |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -7754,7 +7795,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lXv
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 77
51
"configure"
#line 77
92
"configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
...
...
@@ -7765,7 +7806,7 @@ int main() {
XvPutImage()
; return 0; }
EOF
if
{
(
eval echo
configure:7
762
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:7
803
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -7825,7 +7866,7 @@ fi
# Extract the first word of "sdl12-config", so it can be a program name with args.
set
dummy sdl12-config
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:78
22
: checking for
$ac_word
"
>
&5
echo
"configure:78
63
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_SDL12_CONFIG
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -7865,7 +7906,7 @@ fi
# Extract the first word of "sdl11-config", so it can be a program name with args.
set
dummy sdl11-config
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:7
862
: checking for
$ac_word
"
>
&5
echo
"configure:7
903
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_SDL11_CONFIG
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -7906,7 +7947,7 @@ fi
# Extract the first word of "sdl-config", so it can be a program name with args.
set
dummy sdl-config
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:79
03
: checking for
$ac_word
"
>
&5
echo
"configure:79
44
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_SDL_CONFIG
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -7951,17 +7992,17 @@ fi
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:79
48
: checking for
$ac_hdr
"
>
&5
echo
"configure:79
89
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 79
53
"configure"
#line 79
94
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:79
58
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:79
99
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -8031,17 +8072,17 @@ fi
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:80
28
: checking for
$ac_hdr
"
>
&5
echo
"configure:80
69
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 80
33
"configure"
#line 80
74
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:80
38
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:80
79
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -8070,7 +8111,7 @@ done
else
echo
$ac_n
"checking for directX headers in
${
with_directx
}
""...
$ac_c
"
1>&6
echo
"configure:8
067
: checking for directX headers in
${
with_directx
}
"
>
&5
echo
"configure:8
108
: checking for directX headers in
${
with_directx
}
"
>
&5
if
test
-f
${
with_directx
}
/ddraw.h
then
PLUGINS
=
"
${
PLUGINS
}
video_output/directx/directx"
...
...
@@ -8097,17 +8138,17 @@ fi
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:8
094
: checking for
$ac_hdr
"
>
&5
echo
"configure:8
135
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 8
099
"configure"
#line 8
140
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:81
04
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:81
45
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -8202,17 +8243,17 @@ if test "x${enable_aa}" = "xyes"
then
ac_safe
=
`
echo
"aalib.h"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for aalib.h""...
$ac_c
"
1>&6
echo
"configure:8
199
: checking for aalib.h"
>
&5
echo
"configure:8
240
: checking for aalib.h"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 82
04
"configure"
#line 82
45
"configure"
#include "confdefs.h"
#include <aalib.h>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:82
09
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:82
50
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -8263,17 +8304,17 @@ then
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:8
260
: checking for
$ac_hdr
"
>
&5
echo
"configure:8
301
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 8
265
"configure"
#line 8
306
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:8
270
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:8
311
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -8296,7 +8337,7 @@ EOF
PLUGINS
=
"
${
PLUGINS
}
audio_output/oss"
echo
$ac_n
"checking for main in -lossaudio""...
$ac_c
"
1>&6
echo
"configure:8
293
: checking for main in -lossaudio"
>
&5
echo
"configure:8
334
: checking for main in -lossaudio"
>
&5
ac_lib_var
=
`
echo
ossaudio
'_'
main |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -8304,14 +8345,14 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lossaudio
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 83
01
"configure"
#line 83
42
"configure"
#include "confdefs.h"
int main() {
main()
; return 0; }
EOF
if
{
(
eval echo
configure:83
08
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:83
49
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -8347,7 +8388,7 @@ if test "${enable_esd+set}" = set; then
# Extract the first word of "esd-config", so it can be a program name with args.
set
dummy esd-config
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:83
44
: checking for
$ac_word
"
>
&5
echo
"configure:83
85
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_ESD_CONFIG
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -8398,7 +8439,7 @@ if test "${enable_arts+set}" = set; then
# Extract the first word of "artsc-config", so it can be a program name with args.
set
dummy artsc-config
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:8
395
: checking for
$ac_word
"
>
&5
echo
"configure:8
436
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_ARTS_CONFIG
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -8448,17 +8489,17 @@ if test "${enable_alsa+set}" = set; then
then
ac_safe
=
`
echo
"alsa/asoundlib.h"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for alsa/asoundlib.h""...
$ac_c
"
1>&6
echo
"configure:84
45
: checking for alsa/asoundlib.h"
>
&5
echo
"configure:84
86
: checking for alsa/asoundlib.h"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 84
50
"configure"
#line 84
91
"configure"
#include "confdefs.h"
#include <alsa/asoundlib.h>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:84
55
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:84
96
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -8475,7 +8516,7 @@ fi
if
eval
"test
\"
`
echo
'$ac_cv_header_'
$ac_safe
`
\"
= yes"
;
then
echo
"
$ac_t
""yes"
1>&6
echo
$ac_n
"checking for main in -lasound""...
$ac_c
"
1>&6
echo
"configure:8
472
: checking for main in -lasound"
>
&5
echo
"configure:8
513
: checking for main in -lasound"
>
&5
ac_lib_var
=
`
echo
asound
'_'
main |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -8483,14 +8524,14 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lasound
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 8
480
"configure"
#line 8
521
"configure"
#include "confdefs.h"
int main() {
main()
; return 0; }
EOF
if
{
(
eval echo
configure:8
487
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:8
528
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -8572,7 +8613,7 @@ fi
# Extract the first word of "gtk12-config", so it can be a program name with args.
set
dummy gtk12-config
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:8
569
: checking for
$ac_word
"
>
&5
echo
"configure:8
610
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_GTK12_CONFIG
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -8611,7 +8652,7 @@ fi
# Extract the first word of "gtk-config", so it can be a program name with args.
set
dummy gtk-config
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:86
08
: checking for
$ac_word
"
>
&5
echo
"configure:86
49
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_GTK_CONFIG
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -8660,17 +8701,17 @@ fi
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:86
57
: checking for
$ac_hdr
"
>
&5
echo
"configure:86
98
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 8
662
"configure"
#line 8
703
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:8
667
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:8
708
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -8730,7 +8771,7 @@ fi
# Extract the first word of "gtk12-config", so it can be a program name with args.
set
dummy gtk12-config
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:87
27
: checking for
$ac_word
"
>
&5
echo
"configure:87
68
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_GTK12_CONFIG
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -8769,7 +8810,7 @@ fi
# Extract the first word of "gtk-config", so it can be a program name with args.
set
dummy gtk-config
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:8
766
: checking for
$ac_word
"
>
&5
echo
"configure:8
807
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_GTK_CONFIG
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -8818,17 +8859,17 @@ fi
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:88
15
: checking for
$ac_hdr
"
>
&5
echo
"configure:88
56
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 88
20
"configure"
#line 88
61
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:88
25
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:88
66
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -8873,7 +8914,7 @@ if test "${enable_gnome+set}" = set; then
# Extract the first word of "gnome-config", so it can be a program name with args.
set
dummy gnome-config
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:8
870
: checking for
$ac_word
"
>
&5
echo
"configure:8
911
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_GNOME_CONFIG
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -8917,17 +8958,17 @@ fi
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:89
14
: checking for
$ac_hdr
"
>
&5
echo
"configure:89
55
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 89
19
"configure"
#line 89
60
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:89
24
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:89
65
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -9032,17 +9073,17 @@ else
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:90
29
: checking for
$ac_hdr
"
>
&5
echo
"configure:90
70
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 90
34
"configure"
#line 90
75
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:90
39
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:90
80
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -9085,17 +9126,17 @@ fi
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:9
082
: checking for
$ac_hdr
"
>
&5
echo
"configure:9
123
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 9
087
"configure"
#line 9
128
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:9
092
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:9
133
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -9166,17 +9207,17 @@ if test "x${enable_xosd}" = "xyes"
then
ac_safe
=
`
echo
"xosd.h"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for xosd.h""...
$ac_c
"
1>&6
echo
"configure:9
163
: checking for xosd.h"
>
&5
echo
"configure:9
204
: checking for xosd.h"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 9
168
"configure"
#line 9
209
"configure"
#include "confdefs.h"
#include <xosd.h>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:9
173
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:9
214
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -9215,17 +9256,17 @@ if test "x${enable_lirc}" = "xyes"
then
ac_safe
=
`
echo
"lirc/lirc_client.h"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for lirc/lirc_client.h""...
$ac_c
"
1>&6
echo
"configure:92
12
: checking for lirc/lirc_client.h"
>
&5
echo
"configure:92
53
: checking for lirc/lirc_client.h"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 92
17
"configure"
#line 92
58
"configure"
#include "confdefs.h"
#include <lirc/lirc_client.h>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:92
22
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:92
63
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -9242,7 +9283,7 @@ fi
if
eval
"test
\"
`
echo
'$ac_cv_header_'
$ac_safe
`
\"
= yes"
;
then
echo
"
$ac_t
""yes"
1>&6
echo
$ac_n
"checking for lirc_init in -llirc_client""...
$ac_c
"
1>&6
echo
"configure:92
39
: checking for lirc_init in -llirc_client"
>
&5
echo
"configure:92
80
: checking for lirc_init in -llirc_client"
>
&5
ac_lib_var
=
`
echo
lirc_client
'_'
lirc_init |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -9250,7 +9291,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-llirc_client
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 92
47
"configure"
#line 92
88
"configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
...
...
@@ -9261,7 +9302,7 @@ int main() {
lirc_init()
; return 0; }
EOF
if
{
(
eval echo
configure:92
58
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:92
99
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -9316,7 +9357,7 @@ fi
;;
*
)
echo
$ac_n
"checking whether the byte order is big-endian""...
$ac_c
"
1>&6
echo
"configure:93
13
: checking whether the byte order is big-endian"
>
&5
echo
"configure:93
54
: checking whether the byte order is big-endian"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_c_bigendian
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -9398,7 +9439,7 @@ if test "${enable_pth+set}" = set; then
enableval
=
"
$enable_pth
"
if
test
"x
${
enable_pth
}
"
=
"xyes"
;
then
echo
$ac_n
"checking for pth_init in -lpth""...
$ac_c
"
1>&6
echo
"configure:9
395
: checking for pth_init in -lpth"
>
&5
echo
"configure:9
436
: checking for pth_init in -lpth"
>
&5
ac_lib_var
=
`
echo
pth
'_'
pth_init |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -9406,7 +9447,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lpth
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 94
03
"configure"
#line 94
44
"configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
...
...
@@ -9417,7 +9458,7 @@ int main() {
pth_init()
; return 0; }
EOF
if
{
(
eval echo
configure:94
14
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:94
55
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -9445,7 +9486,7 @@ else
fi
cat
>
conftest.
$ac_ext
<<
EOF
#line 94
42
"configure"
#line 94
83
"configure"
#include "confdefs.h"
#include <pth.h>
EOF
...
...
@@ -9471,7 +9512,7 @@ if test "${enable_st+set}" = set; then
enableval
=
"
$enable_st
"
if
test
"x
${
enable_st
}
"
=
"xyes"
;
then
echo
$ac_n
"checking for st_init in -lst""...
$ac_c
"
1>&6
echo
"configure:9
468
: checking for st_init in -lst"
>
&5
echo
"configure:9
509
: checking for st_init in -lst"
>
&5
ac_lib_var
=
`
echo
st
'_'
st_init |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -9479,7 +9520,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lst
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 9
476
"configure"
#line 9
517
"configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
...
...
@@ -9490,7 +9531,7 @@ int main() {
st_init()
; return 0; }
EOF
if
{
(
eval echo
configure:9
487
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:9
528
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -9518,7 +9559,7 @@ else
fi
cat
>
conftest.
$ac_ext
<<
EOF
#line 95
15
"configure"
#line 95
56
"configure"
#include "confdefs.h"
#include <st.h>
EOF
...
...
@@ -9554,7 +9595,7 @@ then
# Extract the first word of "mozilla-config", so it can be a program name with args.
set
dummy mozilla-config
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:95
51
: checking for
$ac_word
"
>
&5
echo
"configure:95
92
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_MOZILLA_CONFIG
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -9592,7 +9633,7 @@ fi
if
test
"x
${
SYS
}
"
!=
"xmingw32"
;
then
LDFLAGS
=
"
${
save_LDFLAGS
}
-L
${
x_libraries
}
"
echo
$ac_n
"checking for XtStrings in -lXt""...
$ac_c
"
1>&6
echo
"configure:9
589
: checking for XtStrings in -lXt"
>
&5
echo
"configure:9
630
: checking for XtStrings in -lXt"
>
&5
ac_lib_var
=
`
echo
Xt
'_'
XtStrings |
sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -9600,7 +9641,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lXt
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 9
597
"configure"
#line 9
638
"configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
...
...
@@ -9611,7 +9652,7 @@ int main() {
XtStrings()
; return 0; }
EOF
if
{
(
eval echo
configure:96
08
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:96
49
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -9804,6 +9845,7 @@ for i in `echo ${BUILTINS} | sed -e 's#[^ ]*/##g'` ; do libvlc_LDFLAGS="${libvlc
trap
''
1 2 15
...
...
@@ -10064,6 +10106,7 @@ s%@dvd_LDFLAGS@%$dvd_LDFLAGS%g
s%@dvdread_LDFLAGS@%
$dvdread_LDFLAGS
%g
s%@dvdplay_LDFLAGS@%
$dvdplay_LDFLAGS
%g
s%@ts_dvbpsi_LDFLAGS@%
$ts_dvbpsi_LDFLAGS
%g
s%@audio_LDFLAGS@%
$audio_LDFLAGS
%g
s%@esd_LDFLAGS@%
$esd_LDFLAGS
%g
s%@familiar_LDFLAGS@%
$familiar_LDFLAGS
%g
s%@distort_LDFLAGS@%
$distort_LDFLAGS
%g
...
...
configure.in
View file @
086f0dc8
...
...
@@ -1016,6 +1016,11 @@ then
fi
fi
dnl
dnl libid3tag support
dnl
AC_CHECK_HEADERS(id3tag.h, [audio_LDFLAGS="${audio_LDFLAGS} -lz -lid3tag"])
dnl
dnl ffmpeg decoder plugin
dnl
...
...
@@ -2087,6 +2092,7 @@ AC_SUBST(dvd_LDFLAGS)
AC_SUBST(dvdread_LDFLAGS)
AC_SUBST(dvdplay_LDFLAGS)
AC_SUBST(ts_dvbpsi_LDFLAGS)
AC_SUBST(audio_LDFLAGS)
AC_SUBST(esd_LDFLAGS)
AC_SUBST(familiar_LDFLAGS)
AC_SUBST(distort_LDFLAGS)
...
...
modules/demux/mpeg/audio.c
View file @
086f0dc8
...
...
@@ -2,7 +2,7 @@
* audio.c : mpeg audio Stream input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: audio.c,v 1.
5 2002/08/16 03:07:56 sam
Exp $
* $Id: audio.c,v 1.
6 2002/08/18 14:11:35 sigmunau
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -32,6 +32,11 @@
#include <sys/types.h>
#ifdef HAVE_ID3TAG_H
#include <id3tag.h>
#endif
#undef HAVE_ID3TAG_H
/*****************************************************************************
* Local prototypes
*****************************************************************************/
...
...
@@ -438,27 +443,69 @@ static void ExtractConfiguration( demux_sys_t *p_demux )
}
/****************************************************************************
*
SkipID3Tag : check if an ID3 header is present and skip it
*
ParseID3Tag : parse an id3tag into the info structures
****************************************************************************
*
* Author : Sigmund Augdal
*
****************************************************************************/
static
int
SkipID3Tag
(
input_thread_t
*
p_input
)
' ****************************************************************************/
#ifdef HAVE_ID3TAG_H
static
void
ParseID3Tag
(
input_thread_t
*
p_input
,
u8
*
p_data
,
int
i_size
)
{
struct
id3_tag
*
p_id3_tag
;
struct
id3_frame
*
p_frame
;
input_info_category_t
*
p_category
;
int
i_strings
;
char
*
psz_temp
;
int
i
;
p_id3_tag
=
id3_tag_parse
(
p_data
,
i_size
);
p_category
=
input_InfoCategory
(
p_input
,
"ID3"
);
i
=
0
;
while
(
(
p_frame
=
id3_tag_findframe
(
p_id3_tag
,
"T"
,
i
)
)
)
{
i_strings
=
id3_field_getnstrings
(
&
p_frame
->
fields
[
1
]
);
while
(
i_strings
>
0
)
{
psz_temp
=
id3_ucs4_latin1duplicate
(
id3_field_getstrings
(
&
p_frame
->
fields
[
1
],
--
i_strings
)
);
input_AddInfo
(
p_category
,
(
char
*
)
p_frame
->
description
,
psz_temp
);
free
(
psz_temp
);
}
i
++
;
}
id3_tag_delete
(
p_id3_tag
);
}
#endif
/****************************************************************************
* ParseID3Tag : check if an ID3 header is present and parse and skip it
****************************************************************************
*
* Author : Sigmund Augdal
*
' ****************************************************************************/
static
int
ParseID3Tags
(
input_thread_t
*
p_input
)
{
int
count
;
u8
*
p_peek
;
int
i_size
;
#ifdef HAVE_ID3TAG_H
int
i_size2
;
stream_position_t
*
p_pos
;
#else
u8
version
,
revision
;
int
b_footer
;
int
i_size
;
#endif
msg_Dbg
(
p_input
,
"Checking for ID3 tag"
);
/* get 10 byte id3 header */
if
(
(
count
=
input_Peek
(
p_input
,
&
p_peek
,
10
)
)
<
10
)
if
(
input_Peek
(
p_input
,
&
p_peek
,
10
)
<
10
)
{
msg_Err
(
p_input
,
"cannot peek()"
);
return
(
-
1
);
}
#ifndef HAVE_ID3TAG_H
if
(
!
(
(
p_peek
[
0
]
==
0x49
)
&&
(
p_peek
[
1
]
==
0x44
)
&&
(
p_peek
[
2
]
==
0x33
)))
{
return
(
0
);
...
...
@@ -471,21 +518,91 @@ static int SkipID3Tag( input_thread_t *p_input )
i_size
=
(
p_peek
[
6
]
<<
21
)
+
(
p_peek
[
7
]
<<
14
)
+
(
p_peek
[
8
]
<<
7
)
+
p_peek
[
9
];
/* Is this safe? */
p_peek
[
9
];
if
(
b_footer
)
{
i_size
+=
10
;
}
i_size
+=
10
;
msg_Dbg
(
p_input
,
"ID3 tag found, skipping %d bytes"
,
i_size
);
#else
i_size
=
id3_tag_query
(
p_peek
,
10
);
if
(
p_input
->
stream
.
b_seekable
)
{
/*look for a id3v1 tag at the end of the file*/
p_pos
=
malloc
(
sizeof
(
stream_position_t
)
);
if
(
p_pos
==
0
)
{
msg_Err
(
p_input
,
"no mem"
);
}
input_Tell
(
p_input
,
p_pos
);
p_input
->
pf_seek
(
p_input
,
p_pos
->
i_size
-
128
);
input_AccessReinit
(
p_input
);
/* get 10 byte id3 header */
if
(
input_Peek
(
p_input
,
&
p_peek
,
10
)
<
10
)
{
msg_Err
(
p_input
,
"cannot peek()"
);
return
(
-
1
);
}
i_size2
=
id3_tag_query
(
p_peek
,
10
);
if
(
i_size2
==
128
)
{
/* peek the entire tag */
if
(
input_Peek
(
p_input
,
&
p_peek
,
i_size2
)
<
i_size2
)
{
msg_Err
(
p_input
,
"cannot peek()"
);
return
(
-
1
);
}
ParseID3Tag
(
p_input
,
p_peek
,
i_size2
);
}
/* look for id3v2.4 tag at end of file */
p_input
->
pf_seek
(
p_input
,
p_pos
->
i_size
-
10
);
input_AccessReinit
(
p_input
);
/* get 10 byte id3 footer */
if
(
input_Peek
(
p_input
,
&
p_peek
,
10
)
<
10
)
{
msg_Err
(
p_input
,
"cannot peek()"
);
return
(
-
1
);
}
i_size2
=
id3_tag_query
(
p_peek
,
10
);
if
(
i_size2
<
0
)
/* id3v2.4 footer found */
{
p_input
->
pf_seek
(
p_input
,
p_pos
->
i_size
-
i_size2
);
input_AccessReinit
(
p_input
);
/* peek the entire tag */
if
(
input_Peek
(
p_input
,
&
p_peek
,
i_size2
)
<
i_size2
)
{
msg_Err
(
p_input
,
"cannot peek()"
);
return
(
-
1
);
}
ParseID3Tag
(
p_input
,
p_peek
,
i_size2
);
}
free
(
p_pos
);
p_input
->
pf_seek
(
p_input
,
0
);
input_AccessReinit
(
p_input
);
}
if
(
i_size
<=
0
)
{
return
0
;
}
#endif
/* peek the entire tag */
if
(
input_Peek
(
p_input
,
&
p_peek
,
i_size
)
<
i_size
)
{
msg_Err
(
p_input
,
"cannot peek()"
);
return
(
-
1
);
}
p_input
->
p_current_data
+=
i_size
;
/* seek passed end of ID3 tag */
#ifdef HAVE_ID3TAG_H
ParseID3Tag
(
p_input
,
p_peek
,
i_size
);
#endif
msg_Dbg
(
p_input
,
"ID3 tag found, skiping %d bytes"
,
i_size
);
p_input
->
pf_seek
(
p_input
,
i_size
);
input_AccessReinit
(
p_input
);
// p_input->p_current_data += i_size; /* seek passed end of ID3 tag */
return
(
0
);
}
...
...
@@ -549,7 +666,7 @@ static int Activate( vlc_object_t * p_this )
b_forced
=
0
;
}
if
(
SkipID3Tag
(
p_input
)
)
if
(
ParseID3Tags
(
p_input
)
)
{
return
(
-
1
);
}
...
...
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