Commit 13973497 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Add .kar extension (fixes #7715)

parent 311af61b
......@@ -183,7 +183,7 @@ typedef enum vlc_dialog {
#define INTF_ABOUT_MSG LICENSE_MSG
#define EXTENSIONS_AUDIO_CSV "3ga", "669", "a52", "aac", "ac3", "adt", "adts", "aif", "aifc", "aiff", \
"amr", "aob", "ape", "awb", "caf", "dts", "flac", "it", \
"amr", "aob", "ape", "awb", "caf", "dts", "flac", "it", "kar", \
"m4a", "m4p", "m5p", "mka", "mlp", "mod", "mpa", "mp1", "mp2", "mp3", "mpc", "mpga", \
"oga", "ogg", "oma", "opus", "qcp", "ra", "rmi", "s3m", "spx", "thd", "tta", \
"voc", "vqf", "w64", "wav", "wma", "wv", "xa", "xm"
......@@ -216,6 +216,7 @@ typedef enum vlc_dialog {
"*.dts;" \
"*.flac;"\
"*.it;" \
"*.kar;" \
"*.m4a;" \
"*.m4p;" \
"*.m5p;" \
......
......@@ -136,7 +136,7 @@ demux_t *demux_New( vlc_object_t *p_obj, input_thread_t *p_parent_input,
{ "m4v", "m4v" },
{ "h264", "h264" },
{ "voc", "voc" },
{ "mid", "smf" }, { "rmi", "smf" },
{ "mid", "smf" }, { "rmi", "smf" }, { "kar", "smf" },
{ "", "" },
};
/* Here, we don't mind if it does not work, it must be quick */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment