Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
e829402d
Commit
e829402d
authored
Mar 31, 2003
by
sigmunau
Browse files
made a format-only string untranslateable
parent
49605782
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/ogg.c
View file @
e829402d
...
...
@@ -2,7 +2,7 @@
* ogg.c : ogg stream input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: ogg.c,v 1.2
2
2003/03/3
0 18:14:37 gbazin
Exp $
* $Id: ogg.c,v 1.2
3
2003/03/3
1 23:37:36 sigmunau
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -810,7 +810,7 @@ static int Ogg_FindLogicalStreams( input_thread_t *p_input, demux_sys_t *p_ogg)
sprintf
(
title
,
"Stream %d"
,
p_ogg
->
i_streams
);
p_cat
=
input_InfoCategory
(
p_input
,
title
);
input_AddInfo
(
p_cat
,
_
(
"Type"
),
_
(
"Audio"
)
);
input_AddInfo
(
p_cat
,
_
(
"Codec"
),
_
(
"%.4s"
)
,
input_AddInfo
(
p_cat
,
_
(
"Codec"
),
"%.4s"
,
(
char
*
)
&
p_stream
->
i_fourcc
);
input_AddInfo
(
p_cat
,
_
(
"Sample Rate"
),
"%d"
,
p_stream
->
p_wf
->
nSamplesPerSec
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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