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
2626e234
Commit
2626e234
authored
Sep 28, 2005
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* warning fixes
parent
6e8cb95c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
modules/mux/ogg.c
modules/mux/ogg.c
+3
-2
No files found.
modules/mux/ogg.c
View file @
2626e234
...
@@ -648,7 +648,7 @@ static block_t *OggCreateHeader( sout_mux_t *p_mux, mtime_t i_dts )
...
@@ -648,7 +648,7 @@ static block_t *OggCreateHeader( sout_mux_t *p_mux, mtime_t i_dts )
else
if
(
p_stream
->
i_fourcc
==
VLC_FOURCC
(
'f'
,
'l'
,
'a'
,
'c'
)
)
else
if
(
p_stream
->
i_fourcc
==
VLC_FOURCC
(
'f'
,
'l'
,
'a'
,
'c'
)
)
{
{
/* flac stream marker (yeah, only that in the 1st packet) */
/* flac stream marker (yeah, only that in the 1st packet) */
op
.
packet
=
"fLaC"
;
op
.
packet
=
(
unsigned
char
*
)
"fLaC"
;
op
.
bytes
=
4
;
op
.
bytes
=
4
;
op
.
b_o_s
=
1
;
op
.
b_o_s
=
1
;
op
.
e_o_s
=
0
;
op
.
e_o_s
=
0
;
...
@@ -729,7 +729,8 @@ static block_t *OggCreateHeader( sout_mux_t *p_mux, mtime_t i_dts )
...
@@ -729,7 +729,8 @@ static block_t *OggCreateHeader( sout_mux_t *p_mux, mtime_t i_dts )
/* comment */
/* comment */
com
[
0
]
=
PACKET_TYPE_COMMENT
;
com
[
0
]
=
PACKET_TYPE_COMMENT
;
i_com
=
snprintf
(
&
com
[
1
],
127
,
PACKAGE_VERSION
" stream output"
)
i_com
=
snprintf
(
(
char
*
)(
com
+
1
),
127
,
PACKAGE_VERSION
" stream output"
)
+
1
;
+
1
;
op
.
packet
=
com
;
op
.
packet
=
com
;
op
.
bytes
=
i_com
;
op
.
bytes
=
i_com
;
...
...
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