Commit e714549a authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Add .rpl extension

parent 2a036fb4
...@@ -43,7 +43,7 @@ Demuxer: ...@@ -43,7 +43,7 @@ Demuxer:
* Support HDPR TS files * Support HDPR TS files
* Improvements in metadata support in Ogg/Opus/Vorbis files * Improvements in metadata support in Ogg/Opus/Vorbis files
* Fix encoding issues in some XML playlist formats * Fix encoding issues in some XML playlist formats
* Support THP Wii/Gamecube, RenderWare video files * Support THP Wii/Gamecube, RenderWare and Escape Replay game video files
Muxers: Muxers:
* Important rework of the Ogg muxer, notably for skeleton * Important rework of the Ogg muxer, notably for skeleton
......
...@@ -196,6 +196,7 @@ FunctionEnd ...@@ -196,6 +196,7 @@ FunctionEnd
!insertmacro ${_action} Video ".rec" !insertmacro ${_action} Video ".rec"
!insertmacro ${_action} Video ".rm" !insertmacro ${_action} Video ".rm"
!insertmacro ${_action} Video ".rmvb" !insertmacro ${_action} Video ".rmvb"
!insertmacro ${_action} Video ".rpl"
!insertmacro ${_action} Video ".thp" !insertmacro ${_action} Video ".thp"
!insertmacro ${_action} Video ".tod" !insertmacro ${_action} Video ".tod"
!insertmacro ${_action} Video ".ts" !insertmacro ${_action} Video ".ts"
......
...@@ -194,7 +194,7 @@ typedef enum vlc_dialog { ...@@ -194,7 +194,7 @@ typedef enum vlc_dialog {
"mp2", "mp2v", "mp4", "mp4v", "mpe", "mpeg", "mpeg1", \ "mp2", "mp2v", "mp4", "mp4v", "mpe", "mpeg", "mpeg1", \
"mpeg2", "mpeg4", "mpg", "mpv2", "mts", "mtv", "mxf", "mxg", "nsv", "nuv", \ "mpeg2", "mpeg4", "mpg", "mpv2", "mts", "mtv", "mxf", "mxg", "nsv", "nuv", \
"ogg", "ogm", "ogv", "ogx", "ps", \ "ogg", "ogm", "ogv", "ogx", "ps", \
"rec", "rm", "rmvb", "thp", "tod", "ts", "tts", "txd", "vob", "vro", \ "rec", "rm", "rmvb", "rpl", "thp", "tod", "ts", "tts", "txd", "vob", "vro", \
"webm", "wm", "wmv", "wtv", "xesc" "webm", "wm", "wmv", "wtv", "xesc"
#define EXTENSIONS_AUDIO \ #define EXTENSIONS_AUDIO \
...@@ -256,7 +256,7 @@ typedef enum vlc_dialog { ...@@ -256,7 +256,7 @@ typedef enum vlc_dialog {
"*.m2t;*.m2ts;*.m4v;*.mkv;*.mov;*.mp2;*.mp2v;*.mp4;*.mp4v;*.mpe;*.mpeg;*.mpeg1;" \ "*.m2t;*.m2ts;*.m4v;*.mkv;*.mov;*.mp2;*.mp2v;*.mp4;*.mp4v;*.mpe;*.mpeg;*.mpeg1;" \
"*.mpeg2;*.mpeg4;*.mpg;*.mpv2;*.mts;*.mtv;*.mxf;*.mxg;*.nsv;*.nuv;" \ "*.mpeg2;*.mpeg4;*.mpg;*.mpv2;*.mts;*.mtv;*.mxf;*.mxg;*.nsv;*.nuv;" \
"*.ogg;*.ogm;*.ogv;*.ogx;*.ps;" \ "*.ogg;*.ogm;*.ogv;*.ogx;*.ps;" \
"*.rec;*.rm;*.rmvb;*.thp;*.tod;*.ts;*.tts;*.txd;*.vob;*.vro;*.webm;*.wm;*.wmv;*.wtv;*.xesc" "*.rec;*.rm;*.rmvb;*.rpl;*.thp;*.tod;*.ts;*.tts;*.txd;*.vob;*.vro;*.webm;*.wm;*.wmv;*.wtv;*.xesc"
#define EXTENSIONS_PLAYLIST "*.asx;*.b4s;*.cue;*.ifo;*.m3u;*.m3u8;*.pls;*.ram;*.rar;*.sdp;*.vlc;*.xspf;*.wax;*.wvx;*.zip;*.conf" #define EXTENSIONS_PLAYLIST "*.asx;*.b4s;*.cue;*.ifo;*.m3u;*.m3u8;*.pls;*.ram;*.rar;*.sdp;*.vlc;*.xspf;*.wax;*.wvx;*.zip;*.conf"
......
...@@ -6,7 +6,7 @@ var video_types = [ ...@@ -6,7 +6,7 @@ var video_types = [
"mp2", "mp4", "mpeg", "mpeg1", "mp2", "mp4", "mpeg", "mpeg1",
"mpeg2", "mpeg4", "mpg", "mts", "mtv", "mxf", "mxg", "nuv", "mpeg2", "mpeg4", "mpg", "mts", "mtv", "mxf", "mxg", "nuv",
"ogg", "ogm", "ogv", "ogx", "ps", "ogg", "ogm", "ogv", "ogx", "ps",
"rec", "rm", "rmvb", "thp", "ts", "txd", "vob", "wmv", "xesc" ]; "rec", "rm", "rmvb", "rpl", "thp", "ts", "txd", "vob", "wmv", "xesc" ];
var audio_types = [ var audio_types = [
"3ga", "a52", "aac", "ac3", "ape", "awb", "dts", "flac", "it", "3ga", "a52", "aac", "ac3", "ape", "awb", "dts", "flac", "it",
"m4a", "m4p", "mka", "mlp", "mod", "mp1", "mp2", "mp3", "m4a", "m4p", "mka", "mlp", "mod", "mp1", "mp2", "mp3",
......
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