Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
638109b3
Commit
638109b3
authored
Dec 14, 2003
by
Eric Petit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BeOS & gcc 2.9x fixes
parent
3b39f995
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
configure.ac
configure.ac
+2
-1
modules/codec/theora.c
modules/codec/theora.c
+3
-2
No files found.
configure.ac
View file @
638109b3
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.13
3 2003/12/13 11:56:36 gbazin
Exp $
dnl $Id: configure.ac,v 1.13
4 2003/12/14 16:08:32 titer
Exp $
AC_INIT(vlc,0.7.0-test2)
...
...
@@ -162,6 +162,7 @@ case "${target_os}" in
SYS=beos
CFLAGS_save="${CFLAGS_save} -Wno-multichar"; CFLAGS="${CFLAGS_save}"
CXXFLAGS_save="${CXXFLAGS_save} -Wno-multichar"; CXXFLAGS="${CXXFLAGS_save}"
AX_ADD_CXXFLAGS([beos],[])
AX_ADD_LDFLAGS([vlc beos],[-lbe])
AX_ADD_LDFLAGS([beos],[-lmedia -ltranslation -ltracker -lgame])
...
...
modules/codec/theora.c
View file @
638109b3
...
...
@@ -2,7 +2,7 @@
* theora.c: theora decoder module making use of libtheora.
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: theora.c,v 1.
19 2003/12/08 13:02:39 gbazin
Exp $
* $Id: theora.c,v 1.
20 2003/12/14 16:08:32 titer
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -533,6 +533,7 @@ static block_t *Headers( encoder_t *p_enc )
{
ogg_packet
oggpackets
;
int
i
;
block_t
*
p_block
;
/* Ogg packet to block */
for
(
i
=
0
;
i
<
3
;
i
++
)
...
...
@@ -550,7 +551,7 @@ static block_t *Headers( encoder_t *p_enc )
break
;
}
block_t
*
p_block
=
block_New
(
p_enc
,
oggpackets
.
bytes
);
p_block
=
block_New
(
p_enc
,
oggpackets
.
bytes
);
memcpy
(
p_block
->
p_buffer
,
oggpackets
.
packet
,
oggpackets
.
bytes
);
p_block
->
i_dts
=
p_block
->
i_pts
=
p_block
->
i_length
=
0
;
block_ChainAppend
(
&
p_chain
,
p_block
);
...
...
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