Browse Source

Add .caf file format

pull/2/head
Jean-Baptiste Kempf 15 years ago
parent
commit
bfb235db9a
  1. 1
      extras/package/win32/vlc.win32.nsi.in
  2. 3
      include/vlc_interface.h

1
extras/package/win32/vlc.win32.nsi.in

@ -270,6 +270,7 @@ FunctionEnd
!insertmacro ${_action} ".amr"
!insertmacro ${_action} ".aob"
!insertmacro ${_action} ".ape"
!insertmacro ${_action} ".caf"
!insertmacro ${_action} ".cda"
!insertmacro ${_action} ".dts"
!insertmacro ${_action} ".flac"

3
include/vlc_interface.h

@ -123,7 +123,7 @@ VLC_API void libvlc_Quit( libvlc_int_t * );
} \
msg_Info( p_intf, "VLC media player - %s", VERSION_MESSAGE ); \
msg_Info( p_intf, "%s", COPYRIGHT_MESSAGE ); \
msg_Info( p_intf, _("\nWarning: if you can't access the GUI " \
msg_Info( p_intf, _("\nWarning: if you cannot access the GUI " \
"anymore, open a command-line window, go to the " \
"directory where you installed VLC and run " \
"\"vlc -I qt\"\n") )
@ -193,6 +193,7 @@ typedef enum vlc_dialog {
"*.aob;" \
"*.ape;" \
"*.awb;" \
"*.caf;" \
"*.cda;" \
"*.dts;" \
"*.flac;"\

Loading…
Cancel
Save