Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
5aedd620
Commit
5aedd620
authored
Mar 22, 2004
by
Jon Lech Johansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ALL: compile fixes.
parent
48856e6e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
configure.ac
configure.ac
+1
-1
modules/demux/ogg.c
modules/demux/ogg.c
+2
-1
No files found.
configure.ac
View file @
5aedd620
...
...
@@ -1930,7 +1930,7 @@ then
dnl Use a custom faad
AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
AX_ADD_BUILTINS([faad])
AX_ADD_LDFLAGS([faad],[
-L
${real_faad_tree}/libfaad/.libs/libfaad.a])
AX_ADD_LDFLAGS([faad],[${real_faad_tree}/libfaad/.libs/libfaad.a])
AX_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
else
dnl The given libfaad wasn't built
...
...
modules/demux/ogg.c
View file @
5aedd620
...
...
@@ -1408,7 +1408,6 @@ static void Ogg_ReadAnnodexHeader( vlc_object_t *p_this,
{
if
(
!
strncmp
(
&
p_oggpacket
->
packet
[
0
],
"Annodex"
,
7
)
)
{
Ogg_ReadTheoraHeader
(
p_stream
,
p_oggpacket
);
oggpack_buffer
opb
;
uint16_t
major_version
;
...
...
@@ -1416,6 +1415,8 @@ static void Ogg_ReadAnnodexHeader( vlc_object_t *p_this,
uint64_t
timebase_numerator
;
uint64_t
timebase_denominator
;
Ogg_ReadTheoraHeader
(
p_stream
,
p_oggpacket
);
oggpack_readinit
(
&
opb
,
p_oggpacket
->
packet
,
p_oggpacket
->
bytes
);
oggpack_adv
(
&
opb
,
8
*
8
);
/* "Annodex\0" header */
major_version
=
oggpack_read
(
&
opb
,
2
*
8
);
/* major version */
...
...
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