added MediaPlayer to the build

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17212 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Marcus Overhagen 2006-04-23 16:55:54 +00:00
parent e1d8d7d6b4
commit 78838bb774
4 changed files with 36 additions and 2 deletions

View File

@ -12,7 +12,7 @@ SubInclude HAIKU_TOP src apps expander ;
SubInclude HAIKU_TOP src apps glteapot ;
SubInclude HAIKU_TOP src apps installer ;
SubInclude HAIKU_TOP src apps magnify ;
#SubInclude HAIKU_TOP src apps mediaplayer ;
SubInclude HAIKU_TOP src apps mediaplayer ;
SubInclude HAIKU_TOP src apps midiplayer ;
SubInclude HAIKU_TOP src apps people ;
SubInclude HAIKU_TOP src apps poorman ;

View File

@ -0,0 +1,15 @@
SubDir HAIKU_TOP src apps mediaplayer ;
SetSubDirSupportedPlatformsBeOSCompatible ;
Application MediaPlayer :
Controller.cpp
ControllerView.cpp
MainApp.cpp
MainWin.cpp
VideoNode.cpp
VideoView.cpp
: be media tracker
: MediaPlayer.rdef
;

View File

@ -28,7 +28,7 @@
MainApp *gMainApp;
MainApp::MainApp()
: BApplication("application/x-vnd.Haiku-MediaPlayer")
: BApplication("application/x-vnd.Haiku.MediaPlayer")
, fFirstWindow(NewWindow())
{
}

View File

@ -0,0 +1,19 @@
resource app_signature "application/x-vnd.Haiku.MediaPlayer";
resource app_flags B_SINGLE_LAUNCH;
resource file_types message {
"types" = "application/ogg",
"types" = "audio",
"types" = "audio/32kadpcm",
"types" = "audio/basic",
"types" = "audio/mpeg",
"types" = "audio/x-aiff",
"types" = "audio/x-riff",
"types" = "audio/x-wav",
"types" = "video",
"types" = "video/mpeg",
"types" = "video/quicktime",
"types" = "video/x-msvideo"
};