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
5681d3be
Commit
5681d3be
authored
Mar 28, 2006
by
zorglub
Browse files
Strings in include/ (Refs:#438)
parent
458f08e2
Changes
3
Hide whitespace changes
Inline
Side-by-side
include/codecs.h
View file @
5681d3be
...
...
@@ -294,12 +294,12 @@ static struct
wave_format_tag_to_fourcc
[]
=
{
{
WAVE_FORMAT_PCM
,
VLC_FOURCC
(
'a'
,
'r'
,
'a'
,
'w'
),
"Raw audio"
},
{
WAVE_FORMAT_ADPCM
,
VLC_FOURCC
(
'm'
,
's'
,
0x00
,
0x02
),
"A
dpcm
"
},
{
WAVE_FORMAT_ADPCM
,
VLC_FOURCC
(
'm'
,
's'
,
0x00
,
0x02
),
"A
DPCM
"
},
{
WAVE_FORMAT_IEEE_FLOAT
,
VLC_FOURCC
(
'a'
,
'f'
,
'l'
,
't'
),
"IEEE Float audio"
},
{
WAVE_FORMAT_ALAW
,
VLC_FOURCC
(
'a'
,
'l'
,
'a'
,
'w'
),
"A-Law"
},
{
WAVE_FORMAT_MULAW
,
VLC_FOURCC
(
'm'
,
'l'
,
'a'
,
'w'
),
"Mu-Law"
},
{
WAVE_FORMAT_IMA_ADPCM
,
VLC_FOURCC
(
'm'
,
's'
,
0x00
,
0x11
),
"Ima-A
dpcm
"
},
{
WAVE_FORMAT_G726
,
VLC_FOURCC
(
'g'
,
'7'
,
'2'
,
'6'
),
"G.726 A
dpcm
"
},
{
WAVE_FORMAT_IMA_ADPCM
,
VLC_FOURCC
(
'm'
,
's'
,
0x00
,
0x11
),
"Ima-A
DPCM
"
},
{
WAVE_FORMAT_G726
,
VLC_FOURCC
(
'g'
,
'7'
,
'2'
,
'6'
),
"G.726 A
DPCM
"
},
{
WAVE_FORMAT_MPEGLAYER3
,
VLC_FOURCC
(
'm'
,
'p'
,
'g'
,
'a'
),
"Mpeg Audio"
},
{
WAVE_FORMAT_MPEG
,
VLC_FOURCC
(
'm'
,
'p'
,
'g'
,
'a'
),
"Mpeg Audio"
},
{
WAVE_FORMAT_A52
,
VLC_FOURCC
(
'a'
,
'5'
,
'2'
,
' '
),
"A/52"
},
...
...
include/network.h
View file @
5681d3be
...
...
@@ -251,7 +251,7 @@ static inline vlc_bool_t net_AddressIsMulticast( vlc_object_t *p_object, const c
&
hints
,
&
res
);
if
(
i
)
{
msg_Err
(
p_object
,
"
I
nvalid
node
for net_AddressIsMulticast: %s : %s"
,
msg_Err
(
p_object
,
"
i
nvalid
address
for net_AddressIsMulticast: %s : %s"
,
psz_addr
,
vlc_gai_strerror
(
i
)
);
return
VLC_FALSE
;
}
...
...
include/vlc_interface.h
View file @
5681d3be
...
...
@@ -135,9 +135,9 @@ VLC_EXPORT( void, intf_Destroy, ( intf_thread_t * ) );
} \
msg_Info( p_intf, COPYRIGHT_MESSAGE ); \
msg_Info( p_intf, _("\nWarning: if you can't access the GUI " \
"anymore, open a
dos
command
box
, go to the " \
"anymore, open a command
-line window
, go to the " \
"directory where you installed VLC and run " \
"\"vlc -I wx
win
\"\n") )
"\"vlc -I wx\"\n") )
#else
# define CONSOLE_INTRO_MSG
#endif
...
...
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