(ffmpeg builtin) Add mov

This commit is contained in:
twinaphex 2015-06-23 09:19:42 +02:00
parent 9a54105321
commit 6658a3144a
3 changed files with 3 additions and 1 deletions

View File

@ -205,7 +205,7 @@ void libretro_ffmpeg_retro_get_system_info(struct retro_system_info *info)
info->library_name = "FFmpeg";
info->library_version = "v1";
info->need_fullpath = true;
info->valid_extensions = "mkv|avi|f4v|f4f|3gp|ogm|flv|mp4|mp3|wav|webm|flac|ogg|m4a";
info->valid_extensions = "mkv|avi|f4v|f4f|3gp|ogm|flv|mp4|mov|mp3|wav|webm|flac|ogg|m4a";
}
void libretro_ffmpeg_retro_get_system_av_info(struct retro_system_av_info *info)

View File

@ -34,6 +34,7 @@ extern "C" {
#define MENU_VALUE_FILE_OGG 0x0b8898c2U
#define MENU_VALUE_FILE_FLV 0x0b88732dU
#define MENU_VALUE_FILE_WAV 0x0b88ba13U
#define MENU_VALUE_FILE_MOV 0x0b889157U
#define MENU_VALUE_DONT_CARE 0x19da07bcU
#define MENU_VALUE_LINEAR 0xc0d12dc0U

View File

@ -438,6 +438,7 @@ enum rarch_content_type rarch_mediaplayer_is_media_type(const char *path)
case MENU_VALUE_FILE_3GP:
case MENU_VALUE_FILE_F4F:
case MENU_VALUE_FILE_F4V:
case MENU_VALUE_FILE_MOV:
return RARCH_CONTENT_MOVIE;
case MENU_VALUE_FILE_MP3:
case MENU_VALUE_FILE_M4A: