1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-31 06:46:39 +02:00

Strings in include/ (Refs:#438)

This commit is contained in:
Clément Stenac 2006-03-28 13:57:36 +00:00
parent 458f08e285
commit 5681d3bef8
3 changed files with 6 additions and 6 deletions

View File

@ -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), "Adpcm" },
{ WAVE_FORMAT_ADPCM, VLC_FOURCC( 'm', 's', 0x00,0x02), "ADPCM" },
{ 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-Adpcm" },
{ WAVE_FORMAT_G726, VLC_FOURCC( 'g', '7', '2', '6' ), "G.726 Adpcm" },
{ WAVE_FORMAT_IMA_ADPCM, VLC_FOURCC( 'm', 's', 0x00,0x11), "Ima-ADPCM" },
{ WAVE_FORMAT_G726, VLC_FOURCC( 'g', '7', '2', '6' ), "G.726 ADPCM" },
{ 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" },

View File

@ -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;
}

View File

@ -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 wxwin\"\n") )
"\"vlc -I wx\"\n") )
#else
# define CONSOLE_INTRO_MSG
#endif