added Jamfile for DVB TV application and fixed compilation problems after refactoring
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20781 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -29,4 +29,5 @@ SubInclude HAIKU_TOP src apps soundrecorder ;
|
||||
SubInclude HAIKU_TOP src apps stylededit ;
|
||||
SubInclude HAIKU_TOP src apps terminal ;
|
||||
SubInclude HAIKU_TOP src apps tracker ;
|
||||
SubInclude HAIKU_TOP src apps tv ;
|
||||
SubInclude HAIKU_TOP src apps workspaces ;
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
SubDir HAIKU_TOP src apps tv ;
|
||||
|
||||
Application TV :
|
||||
Controller.cpp
|
||||
ConvertBitmap.cpp
|
||||
DeviceRoster.cpp
|
||||
MainApp.cpp
|
||||
MainWin.cpp
|
||||
VideoNode.cpp
|
||||
VideoView.cpp
|
||||
: be media
|
||||
: tv.rdef
|
||||
;
|
||||
@@ -30,6 +30,7 @@
|
||||
#include "ConvertBitmap.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#define CHECK_ACTIVITY 'ChkA'
|
||||
@@ -383,10 +384,10 @@ VideoView::IsOverlaySupported()
|
||||
printf("Overlay restrictions: destination max_width %d\n", restrict.destination.max_width);
|
||||
printf("Overlay restrictions: destination min_height %d\n", restrict.destination.min_height);
|
||||
printf("Overlay restrictions: destination max_height %d\n", restrict.destination.max_height);
|
||||
printf("Overlay restrictions: min_width_scale %d\n", restrict.min_width_scale);
|
||||
printf("Overlay restrictions: max_width_scale %d\n", restrict.max_width_scale);
|
||||
printf("Overlay restrictions: min_height_scale %d\n", restrict.min_height_scale);
|
||||
printf("Overlay restrictions: max_height_scale %d\n", restrict.max_height_scale);
|
||||
printf("Overlay restrictions: min_width_scale %.3f\n", restrict.min_width_scale);
|
||||
printf("Overlay restrictions: max_width_scale %.3f\n", restrict.max_width_scale);
|
||||
printf("Overlay restrictions: min_height_scale %.3f\n", restrict.min_height_scale);
|
||||
printf("Overlay restrictions: max_height_scale %.3f\n", restrict.max_height_scale);
|
||||
}
|
||||
supported = true;
|
||||
}
|
||||
|
||||
@@ -27,13 +27,13 @@
|
||||
|
||||
#include <InterfaceDefs.h>
|
||||
#include <time.h>
|
||||
#include "revision.h"
|
||||
|
||||
#define NAME "TV-O-Rama"
|
||||
#define REVISION "unknown"
|
||||
#define VERSION "1.1"
|
||||
#define BUILD __DATE__ " "__TIME__
|
||||
#define COPYRIGHT B_UTF8_COPYRIGHT" Marcus Overhagen 2005-2006"
|
||||
#define COPYRIGHT B_UTF8_COPYRIGHT" Marcus Overhagen 2005-2007"
|
||||
#define INFO1 "DVB - Digital Video Broadcasting TV"
|
||||
#define APP_SIG "application/x-vnd.MarcusOverhagen."##NAME
|
||||
#define APP_SIG "application/x-vnd.MarcusOverhagen."NAME
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user