Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
5681d3be
Commit
5681d3be
authored
Mar 28, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Strings in include/ (Refs:#438)
parent
458f08e2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
include/codecs.h
include/codecs.h
+3
-3
include/network.h
include/network.h
+1
-1
include/vlc_interface.h
include/vlc_interface.h
+2
-2
No files found.
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
,
"
Invalid node
for net_AddressIsMulticast: %s : %s"
,
msg_Err
(
p_object
,
"
invalid 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
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