2004-04-26 14:17:26 +02:00
|
|
|
/*
|
|
|
|
vo_quartz.c
|
|
|
|
|
2004-10-19 17:04:45 +02:00
|
|
|
by Nicolas Plourde <nicolasplourde@gmail.com>
|
2004-04-26 14:17:26 +02:00
|
|
|
|
|
|
|
Copyright (c) Nicolas Plourde - April 2004
|
2004-05-04 04:57:10 +02:00
|
|
|
|
|
|
|
YUV support Copyright (C) 2004 Romain Dolbeau <romain@dolbeau.org>
|
2004-04-26 14:17:26 +02:00
|
|
|
|
|
|
|
MPlayer Mac OSX Quartz video out module.
|
|
|
|
|
2004-10-20 18:38:33 +02:00
|
|
|
todo: -screen overlay output
|
2004-10-30 21:56:41 +02:00
|
|
|
-clear window background after live resize
|
|
|
|
-fit osd in black bar when available
|
2004-08-24 22:42:27 +02:00
|
|
|
-RGB32 lost HW accel in fullscreen
|
2004-04-26 14:17:26 +02:00
|
|
|
-(add sugestion here)
|
2004-04-05 23:20:19 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
//SYS
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
//OSX
|
|
|
|
#include <Carbon/Carbon.h>
|
2004-05-04 04:57:10 +02:00
|
|
|
#include <QuickTime/QuickTime.h>
|
2004-04-05 23:20:19 +02:00
|
|
|
|
|
|
|
//MPLAYER
|
|
|
|
#include "config.h"
|
2004-05-04 04:57:10 +02:00
|
|
|
#include "fastmemcpy.h"
|
2004-04-05 23:20:19 +02:00
|
|
|
#include "video_out.h"
|
|
|
|
#include "video_out_internal.h"
|
|
|
|
#include "aspect.h"
|
2004-05-04 04:57:10 +02:00
|
|
|
#include "mp_msg.h"
|
|
|
|
#include "m_option.h"
|
2004-04-05 23:20:19 +02:00
|
|
|
|
2004-10-28 03:15:53 +02:00
|
|
|
#include "input/input.h"
|
|
|
|
#include "input/mouse.h"
|
2004-04-05 23:20:19 +02:00
|
|
|
|
|
|
|
#include "vo_quartz.h"
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
static vo_info_t info =
|
|
|
|
{
|
|
|
|
"Mac OSX (Quartz)",
|
|
|
|
"quartz",
|
2004-05-04 04:57:10 +02:00
|
|
|
"Nicolas Plourde <nicolasplourde@hotmail.com>, Romain Dolbeau <romain@dolbeau.org>",
|
2004-04-26 14:17:26 +02:00
|
|
|
""
|
2004-04-05 23:20:19 +02:00
|
|
|
};
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
LIBVO_EXTERN(quartz)
|
|
|
|
|
2004-05-04 04:57:10 +02:00
|
|
|
static uint32_t image_depth;
|
|
|
|
static uint32_t image_format;
|
|
|
|
static uint32_t image_size;
|
|
|
|
static uint32_t image_buffer_size;
|
2004-05-07 03:44:08 +02:00
|
|
|
static char *image_data;
|
2004-05-04 04:57:10 +02:00
|
|
|
|
2004-05-07 03:44:08 +02:00
|
|
|
static ImageSequence seqId;
|
2004-05-04 04:57:10 +02:00
|
|
|
static CodecType image_qtcodec;
|
2004-05-18 22:49:44 +02:00
|
|
|
static PlanarPixmapInfoYUV420 *P = NULL;
|
2004-05-05 03:04:44 +02:00
|
|
|
static struct
|
|
|
|
{
|
|
|
|
ImageDescriptionHandle desc;
|
|
|
|
Handle extension_colr;
|
|
|
|
Handle extension_fiel;
|
|
|
|
Handle extension_clap;
|
|
|
|
Handle extension_pasp;
|
2004-05-04 04:57:10 +02:00
|
|
|
} yuv_qt_stuff;
|
2004-05-07 03:44:08 +02:00
|
|
|
static MatrixRecord matrix;
|
2004-05-04 04:57:10 +02:00
|
|
|
static int EnterMoviesDone = 0;
|
2004-05-18 22:49:44 +02:00
|
|
|
static int get_image_done = 0;
|
2004-04-05 23:20:19 +02:00
|
|
|
|
2004-07-29 16:59:48 +02:00
|
|
|
extern int vo_rootwin;
|
2004-04-26 14:17:26 +02:00
|
|
|
extern int vo_ontop;
|
2004-05-18 22:49:44 +02:00
|
|
|
extern int vo_fs; // user want fullscreen
|
|
|
|
static int vo_quartz_fs; // we are in fullscreen
|
2004-10-28 23:48:41 +02:00
|
|
|
extern float monitor_aspect;
|
2004-10-29 00:03:26 +02:00
|
|
|
extern int vo_keepaspect; //keep aspect ratio when resizing
|
|
|
|
extern float movie_aspect;
|
|
|
|
static float old_movie_aspect;
|
2004-10-29 03:24:14 +02:00
|
|
|
extern float vo_panscan;
|
2004-04-05 23:20:19 +02:00
|
|
|
|
2004-07-15 19:36:01 +02:00
|
|
|
static int winLevel = 1;
|
|
|
|
int levelList[] =
|
|
|
|
{
|
|
|
|
kCGDesktopWindowLevelKey,
|
|
|
|
kCGNormalWindowLevelKey,
|
|
|
|
kCGScreenSaverWindowLevelKey
|
|
|
|
};
|
|
|
|
|
2004-05-18 22:49:44 +02:00
|
|
|
static int int_pause = 0;
|
|
|
|
static float winAlpha = 1;
|
2004-04-05 23:20:19 +02:00
|
|
|
|
2004-05-18 22:49:44 +02:00
|
|
|
static int device_width;
|
|
|
|
static int device_height;
|
2004-06-02 02:58:05 +02:00
|
|
|
static int device_id;
|
2004-04-05 23:20:19 +02:00
|
|
|
|
2004-10-28 16:52:47 +02:00
|
|
|
static short fs_res_x=0;
|
|
|
|
static short fs_res_y=0;
|
|
|
|
|
2004-05-18 22:49:44 +02:00
|
|
|
static WindowRef theWindow = NULL;
|
2004-07-15 19:36:01 +02:00
|
|
|
static WindowGroupRef winGroup = NULL;
|
2004-08-24 22:42:27 +02:00
|
|
|
static CGContextRef context;
|
|
|
|
static CGRect bounds;
|
2004-11-01 17:17:49 +01:00
|
|
|
static GDHandle deviceHdl;
|
2004-08-24 22:42:27 +02:00
|
|
|
|
|
|
|
static CGDataProviderRef dataProviderRef;
|
|
|
|
static CGImageAlphaInfo alphaInfo;
|
|
|
|
static CGImageRef image;
|
2004-04-26 14:17:26 +02:00
|
|
|
|
2004-05-18 22:49:44 +02:00
|
|
|
static Rect imgRect; // size of the original image (unscaled)
|
|
|
|
static Rect dstRect; // size of the displayed image (after scaling)
|
|
|
|
static Rect winRect; // size of the window containg the displayed image (include padding)
|
|
|
|
static Rect oldWinRect; // size of the window containg the displayed image (include padding) when NOT in FS mode
|
2004-06-02 02:58:05 +02:00
|
|
|
static Rect deviceRect; // size of the display device
|
2004-11-01 17:17:49 +01:00
|
|
|
static Rect oldWinBounds;
|
2004-04-26 14:17:26 +02:00
|
|
|
|
2004-10-29 00:03:26 +02:00
|
|
|
static MenuRef windMenu;
|
|
|
|
static MenuRef movMenu;
|
|
|
|
static MenuRef aspectMenu;
|
|
|
|
|
2004-11-02 19:16:41 +01:00
|
|
|
static int border = 15;
|
2004-10-19 17:04:45 +02:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
kQuitCmd = 1,
|
|
|
|
kHalfScreenCmd = 2,
|
|
|
|
kNormalScreenCmd = 3,
|
|
|
|
kDoubleScreenCmd = 4,
|
2004-10-29 00:03:26 +02:00
|
|
|
kFullScreenCmd = 5,
|
|
|
|
kKeepAspectCmd = 6,
|
|
|
|
kAspectOrgCmd = 7,
|
|
|
|
kAspectFullCmd = 8,
|
2004-10-29 03:24:14 +02:00
|
|
|
kAspectWideCmd = 9,
|
|
|
|
kPanScanCmd = 10
|
2004-10-19 17:04:45 +02:00
|
|
|
};
|
|
|
|
|
2004-10-28 03:15:53 +02:00
|
|
|
#include "osdep/keycodes.h"
|
2004-04-26 14:17:26 +02:00
|
|
|
extern void mplayer_put_key(int code);
|
|
|
|
|
|
|
|
extern void vo_draw_text(int dxs,int dys,void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride));
|
2004-04-05 23:20:19 +02:00
|
|
|
|
|
|
|
//PROTOTYPE/////////////////////////////////////////////////////////////////
|
2004-04-26 14:17:26 +02:00
|
|
|
void window_resized();
|
|
|
|
void window_ontop();
|
|
|
|
void window_fullscreen();
|
2004-11-01 17:17:49 +01:00
|
|
|
void window_panscan();
|
2004-04-26 14:17:26 +02:00
|
|
|
|
2004-07-22 22:02:26 +02:00
|
|
|
static inline int convert_key(UInt32 key, UInt32 charcode)
|
|
|
|
{
|
|
|
|
switch(key)
|
|
|
|
{
|
|
|
|
case QZ_IBOOK_ENTER:
|
|
|
|
case QZ_RETURN: return KEY_ENTER;
|
|
|
|
case QZ_ESCAPE: return KEY_ESC;
|
|
|
|
case QZ_BACKSPACE: return KEY_BACKSPACE;
|
|
|
|
case QZ_LALT: return KEY_BACKSPACE;
|
|
|
|
case QZ_LCTRL: return KEY_BACKSPACE;
|
|
|
|
case QZ_LSHIFT: return KEY_BACKSPACE;
|
|
|
|
case QZ_F1: return KEY_F+1;
|
|
|
|
case QZ_F2: return KEY_F+2;
|
|
|
|
case QZ_F3: return KEY_F+3;
|
|
|
|
case QZ_F4: return KEY_F+4;
|
|
|
|
case QZ_F5: return KEY_F+5;
|
|
|
|
case QZ_F6: return KEY_F+6;
|
|
|
|
case QZ_F7: return KEY_F+7;
|
|
|
|
case QZ_F8: return KEY_F+8;
|
|
|
|
case QZ_F9: return KEY_F+9;
|
|
|
|
case QZ_F10: return KEY_F+10;
|
|
|
|
case QZ_F11: return KEY_F+11;
|
|
|
|
case QZ_F12: return KEY_F+12;
|
|
|
|
case QZ_INSERT: return KEY_INSERT;
|
|
|
|
case QZ_DELETE: return KEY_DELETE;
|
|
|
|
case QZ_HOME: return KEY_HOME;
|
|
|
|
case QZ_END: return KEY_END;
|
|
|
|
case QZ_KP_PLUS: return '+';
|
|
|
|
case QZ_KP_MINUS: return '-';
|
|
|
|
case QZ_TAB: return KEY_TAB;
|
|
|
|
case QZ_PAGEUP: return KEY_PAGE_UP;
|
|
|
|
case QZ_PAGEDOWN: return KEY_PAGE_DOWN;
|
|
|
|
case QZ_UP: return KEY_UP;
|
|
|
|
case QZ_DOWN: return KEY_DOWN;
|
|
|
|
case QZ_LEFT: return KEY_LEFT;
|
|
|
|
case QZ_RIGHT: return KEY_RIGHT;
|
|
|
|
case QZ_KP_MULTIPLY: return '*';
|
|
|
|
case QZ_KP_DIVIDE: return '/';
|
|
|
|
case QZ_KP_ENTER: return KEY_BACKSPACE;
|
|
|
|
case QZ_KP_PERIOD: return KEY_KPDEC;
|
|
|
|
case QZ_KP0: return KEY_KP0;
|
|
|
|
case QZ_KP1: return KEY_KP1;
|
|
|
|
case QZ_KP2: return KEY_KP2;
|
|
|
|
case QZ_KP3: return KEY_KP3;
|
|
|
|
case QZ_KP4: return KEY_KP4;
|
|
|
|
case QZ_KP5: return KEY_KP5;
|
|
|
|
case QZ_KP6: return KEY_KP6;
|
|
|
|
case QZ_KP7: return KEY_KP7;
|
|
|
|
case QZ_KP8: return KEY_KP8;
|
|
|
|
case QZ_KP9: return KEY_KP9;
|
|
|
|
default: return charcode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-20 18:38:33 +02:00
|
|
|
static OSStatus MainWindowEventHandler(EventHandlerCallRef nextHandler, EventRef event, void *userData);
|
|
|
|
static OSStatus MainWindowCommandHandler(EventHandlerCallRef nextHandler, EventRef event, void *userData);
|
2004-04-05 23:20:19 +02:00
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
static void draw_alpha(int x0, int y0, int w, int h, unsigned char *src, unsigned char *srca, int stride)
|
|
|
|
{
|
2004-05-05 03:04:44 +02:00
|
|
|
switch (image_format)
|
|
|
|
{
|
|
|
|
case IMGFMT_RGB32:
|
|
|
|
vo_draw_alpha_rgb32(w,h,src,srca,stride,image_data+4*(y0*imgRect.right+x0),4*imgRect.right);
|
|
|
|
break;
|
|
|
|
case IMGFMT_YV12:
|
|
|
|
case IMGFMT_IYUV:
|
|
|
|
case IMGFMT_I420:
|
2004-05-18 22:49:44 +02:00
|
|
|
vo_draw_alpha_yv12(w,h,src,srca,stride, ((char*)P) + P->componentInfoY.offset + x0 + y0 * imgRect.right, imgRect.right);
|
2004-05-05 03:04:44 +02:00
|
|
|
break;
|
|
|
|
case IMGFMT_UYVY:
|
2004-05-31 17:16:41 +02:00
|
|
|
vo_draw_alpha_uyvy(w,h,src,srca,stride,((char*)P) + (x0 + y0 * imgRect.right) * 2,imgRect.right*2);
|
2004-05-05 03:04:44 +02:00
|
|
|
break;
|
|
|
|
case IMGFMT_YUY2:
|
2004-05-18 22:49:44 +02:00
|
|
|
vo_draw_alpha_yuy2(w,h,src,srca,stride,((char*)P) + (x0 + y0 * imgRect.right) * 2,imgRect.right*2);
|
2004-05-05 03:04:44 +02:00
|
|
|
break;
|
2004-05-18 22:49:44 +02:00
|
|
|
}
|
2004-04-26 14:17:26 +02:00
|
|
|
}
|
2004-04-05 23:20:19 +02:00
|
|
|
|
|
|
|
//default window event handler
|
2004-10-20 18:38:33 +02:00
|
|
|
static OSStatus MainWindowEventHandler(EventHandlerCallRef nextHandler, EventRef event, void *userData)
|
2004-04-05 23:20:19 +02:00
|
|
|
{
|
2004-06-23 14:48:42 +02:00
|
|
|
OSStatus result = noErr;
|
2004-05-12 22:47:14 +02:00
|
|
|
UInt32 class = GetEventClass (event);
|
|
|
|
UInt32 kind = GetEventKind (event);
|
2004-06-23 14:48:42 +02:00
|
|
|
|
|
|
|
result = CallNextEventHandler(nextHandler, event);
|
2004-10-19 17:04:45 +02:00
|
|
|
|
2004-10-21 01:33:31 +02:00
|
|
|
if(class == kEventClassKeyboard)
|
2004-05-12 22:47:14 +02:00
|
|
|
{
|
|
|
|
char macCharCodes;
|
|
|
|
UInt32 macKeyCode;
|
|
|
|
UInt32 macKeyModifiers;
|
2004-04-26 14:17:26 +02:00
|
|
|
|
2004-05-12 22:47:14 +02:00
|
|
|
GetEventParameter(event, kEventParamKeyMacCharCodes, typeChar, NULL, sizeof(macCharCodes), NULL, &macCharCodes);
|
|
|
|
GetEventParameter(event, kEventParamKeyCode, typeUInt32, NULL, sizeof(macKeyCode), NULL, &macKeyCode);
|
|
|
|
GetEventParameter(event, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(macKeyModifiers), NULL, &macKeyModifiers);
|
2004-10-19 17:04:45 +02:00
|
|
|
|
|
|
|
if(macKeyModifiers != 256)
|
2004-04-26 14:17:26 +02:00
|
|
|
{
|
2004-10-19 17:04:45 +02:00
|
|
|
if (kind == kEventRawKeyRepeat || kind == kEventRawKeyDown)
|
|
|
|
{
|
|
|
|
int key = convert_key(macKeyCode, macCharCodes);
|
|
|
|
if(key != -1)
|
|
|
|
mplayer_put_key(key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(macKeyModifiers == 256)
|
|
|
|
{
|
|
|
|
switch(macCharCodes)
|
|
|
|
{
|
|
|
|
case '[': SetWindowAlpha(theWindow, winAlpha-=0.05); break;
|
|
|
|
case ']': SetWindowAlpha(theWindow, winAlpha+=0.05); break;
|
|
|
|
}
|
2004-05-12 22:47:14 +02:00
|
|
|
}
|
2004-07-22 22:02:26 +02:00
|
|
|
else
|
|
|
|
result = eventNotHandledErr;
|
2004-05-12 22:47:14 +02:00
|
|
|
}
|
|
|
|
else if(class == kEventClassMouse)
|
|
|
|
{
|
|
|
|
WindowPtr tmpWin;
|
|
|
|
Point mousePos;
|
2004-04-05 23:20:19 +02:00
|
|
|
|
2004-05-12 22:47:14 +02:00
|
|
|
GetEventParameter(event, kEventParamMouseLocation, typeQDPoint, 0, sizeof(Point), 0, &mousePos);
|
2004-04-05 23:20:19 +02:00
|
|
|
|
2004-05-12 22:47:14 +02:00
|
|
|
switch (kind)
|
2004-04-26 14:17:26 +02:00
|
|
|
{
|
2004-05-12 22:47:14 +02:00
|
|
|
case kEventMouseDown:
|
|
|
|
{
|
|
|
|
EventMouseButton button;
|
2004-10-21 13:36:20 +02:00
|
|
|
short part;
|
|
|
|
|
2004-05-12 22:47:14 +02:00
|
|
|
GetEventParameter(event, kEventParamMouseButton, typeMouseButton, 0, sizeof(EventMouseButton), 0, &button);
|
|
|
|
|
2004-10-21 13:36:20 +02:00
|
|
|
part = FindWindow(mousePos,&tmpWin);
|
2004-04-26 14:17:26 +02:00
|
|
|
|
|
|
|
if(part == inMenuBar)
|
|
|
|
{
|
|
|
|
MenuSelect(mousePos);
|
2004-05-12 22:47:14 +02:00
|
|
|
HiliteMenu(0);
|
2004-04-26 14:17:26 +02:00
|
|
|
}
|
2004-05-12 22:47:14 +02:00
|
|
|
else if(part == inContent)
|
|
|
|
{
|
|
|
|
switch(button)
|
|
|
|
{
|
|
|
|
case 1: mplayer_put_key(MOUSE_BTN0);break;
|
|
|
|
case 2: mplayer_put_key(MOUSE_BTN2);break;
|
|
|
|
case 3: mplayer_put_key(MOUSE_BTN1);break;
|
|
|
|
|
2004-06-23 14:48:42 +02:00
|
|
|
default:result = eventNotHandledErr;break;
|
2004-05-12 22:47:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kEventMouseWheelMoved:
|
|
|
|
{
|
|
|
|
int wheel;
|
2004-10-21 13:36:20 +02:00
|
|
|
short part;
|
|
|
|
|
2004-05-12 22:47:14 +02:00
|
|
|
GetEventParameter(event, kEventParamMouseWheelDelta, typeSInt32, 0, sizeof(int), 0, &wheel);
|
|
|
|
|
2004-10-21 13:36:20 +02:00
|
|
|
part = FindWindow(mousePos,&tmpWin);
|
2004-05-12 22:47:14 +02:00
|
|
|
|
|
|
|
if(part == inContent)
|
|
|
|
{
|
|
|
|
if(wheel > 0)
|
|
|
|
mplayer_put_key(MOUSE_BTN3);
|
|
|
|
else
|
|
|
|
mplayer_put_key(MOUSE_BTN4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2004-06-23 14:48:42 +02:00
|
|
|
default:result = eventNotHandledErr;break;
|
2004-05-12 22:47:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-23 14:48:42 +02:00
|
|
|
return result;
|
2004-04-05 23:20:19 +02:00
|
|
|
}
|
|
|
|
|
2004-10-20 18:38:33 +02:00
|
|
|
//default window command handler
|
|
|
|
static OSStatus MainWindowCommandHandler(EventHandlerCallRef nextHandler, EventRef event, void *userData)
|
|
|
|
{
|
|
|
|
OSStatus result = noErr;
|
2004-10-21 14:43:08 +02:00
|
|
|
uint32_t d_width;
|
|
|
|
uint32_t d_height;
|
2004-10-20 18:38:33 +02:00
|
|
|
UInt32 class = GetEventClass (event);
|
|
|
|
UInt32 kind = GetEventKind (event);
|
|
|
|
|
|
|
|
result = CallNextEventHandler(nextHandler, event);
|
2004-10-21 01:33:31 +02:00
|
|
|
|
|
|
|
aspect(&d_width,&d_height,A_NOZOOM);
|
2004-10-20 18:38:33 +02:00
|
|
|
|
|
|
|
if(class == kEventClassCommand)
|
|
|
|
{
|
|
|
|
HICommand theHICommand;
|
|
|
|
GetEventParameter( event, kEventParamDirectObject, typeHICommand, NULL, sizeof( HICommand ), NULL, &theHICommand );
|
|
|
|
|
|
|
|
switch ( theHICommand.commandID )
|
|
|
|
{
|
|
|
|
case kHICommandQuit:
|
|
|
|
mplayer_put_key(KEY_ESC);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kHalfScreenCmd:
|
2004-10-22 02:28:03 +02:00
|
|
|
if(vo_quartz_fs)
|
|
|
|
{
|
|
|
|
vo_fs = (!(vo_fs)); window_fullscreen();
|
|
|
|
}
|
|
|
|
|
2004-10-29 04:16:16 +02:00
|
|
|
SizeWindow(theWindow, (d_width/2), ((d_width/movie_aspect)/2)+border, 1);
|
2004-10-20 18:38:33 +02:00
|
|
|
window_resized();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kNormalScreenCmd:
|
2004-10-22 02:28:03 +02:00
|
|
|
if(vo_quartz_fs)
|
|
|
|
{
|
|
|
|
vo_fs = (!(vo_fs)); window_fullscreen();
|
|
|
|
}
|
|
|
|
|
2004-10-29 04:16:16 +02:00
|
|
|
SizeWindow(theWindow, d_width, (d_width/movie_aspect)+border, 1);
|
2004-10-20 18:38:33 +02:00
|
|
|
window_resized();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kDoubleScreenCmd:
|
2004-10-22 02:28:03 +02:00
|
|
|
if(vo_quartz_fs)
|
|
|
|
{
|
|
|
|
vo_fs = (!(vo_fs)); window_fullscreen();
|
|
|
|
}
|
|
|
|
|
2004-10-29 04:16:16 +02:00
|
|
|
SizeWindow(theWindow, (d_width*2), ((d_width/movie_aspect)*2)+border, 1);
|
2004-10-20 18:38:33 +02:00
|
|
|
window_resized();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kFullScreenCmd:
|
|
|
|
vo_fs = (!(vo_fs)); window_fullscreen();
|
|
|
|
break;
|
|
|
|
|
2004-10-29 00:03:26 +02:00
|
|
|
case kKeepAspectCmd:
|
|
|
|
vo_keepaspect = (!(vo_keepaspect));
|
|
|
|
CheckMenuItem (aspectMenu, 1, vo_keepaspect);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kAspectOrgCmd:
|
|
|
|
movie_aspect = old_movie_aspect;
|
|
|
|
SizeWindow(theWindow, dstRect.right, (dstRect.right/movie_aspect)+border,1);
|
|
|
|
window_resized();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kAspectFullCmd:
|
|
|
|
movie_aspect = 4.0f/3.0f;
|
|
|
|
SizeWindow(theWindow, dstRect.right, (dstRect.right/movie_aspect)+border,1);
|
|
|
|
window_resized();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kAspectWideCmd:
|
|
|
|
movie_aspect = 16.0f/9.0f;
|
|
|
|
SizeWindow(theWindow, dstRect.right, (dstRect.right/movie_aspect)+border,1);
|
|
|
|
window_resized();
|
|
|
|
break;
|
|
|
|
|
2004-10-29 03:24:14 +02:00
|
|
|
case kPanScanCmd:
|
2004-11-01 17:17:49 +01:00
|
|
|
vo_panscan = (!(vo_panscan));
|
|
|
|
CheckMenuItem (aspectMenu, 2, vo_panscan);
|
2004-10-29 03:24:14 +02:00
|
|
|
break;
|
|
|
|
|
2004-10-20 18:38:33 +02:00
|
|
|
default:
|
|
|
|
result = eventNotHandledErr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(class == kEventClassWindow)
|
|
|
|
{
|
|
|
|
WindowRef window;
|
|
|
|
Rect rectPort = {0,0,0,0};
|
|
|
|
|
|
|
|
GetEventParameter(event, kEventParamDirectObject, typeWindowRef, NULL, sizeof(WindowRef), NULL, &window);
|
|
|
|
|
|
|
|
if(window)
|
|
|
|
{
|
|
|
|
GetPortBounds(GetWindowPort(window), &rectPort);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (kind)
|
|
|
|
{
|
|
|
|
case kEventWindowClosed:
|
|
|
|
theWindow = NULL;
|
|
|
|
mplayer_put_key(KEY_ESC);
|
|
|
|
break;
|
|
|
|
|
|
|
|
//resize window
|
|
|
|
case kEventWindowBoundsChanged:
|
|
|
|
window_resized();
|
|
|
|
flip_page();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
result = eventNotHandledErr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2004-05-18 22:49:44 +02:00
|
|
|
static void quartz_CreateWindow(uint32_t d_width, uint32_t d_height, WindowAttributes windowAttrs)
|
|
|
|
{
|
|
|
|
CFStringRef titleKey;
|
|
|
|
CFStringRef windowTitle;
|
|
|
|
OSStatus result;
|
2004-10-29 00:03:26 +02:00
|
|
|
|
|
|
|
MenuItemIndex index;
|
|
|
|
CFStringRef movMenuTitle;
|
|
|
|
CFStringRef aspMenuTitle;
|
2004-05-18 22:49:44 +02:00
|
|
|
|
|
|
|
SetRect(&winRect, 0, 0, d_width, d_height);
|
|
|
|
SetRect(&oldWinRect, 0, 0, d_width, d_height);
|
|
|
|
SetRect(&dstRect, 0, 0, d_width, d_height);
|
2004-10-19 17:04:45 +02:00
|
|
|
|
2004-12-01 22:19:04 +01:00
|
|
|
//Clear Menu Bar
|
|
|
|
ClearMenuBar();
|
|
|
|
|
2004-10-29 00:03:26 +02:00
|
|
|
//Create Window Menu
|
2004-10-19 17:04:45 +02:00
|
|
|
CreateStandardWindowMenu(0, &windMenu);
|
|
|
|
InsertMenu(windMenu, 0);
|
|
|
|
|
2004-10-29 00:03:26 +02:00
|
|
|
//Create Movie Menu
|
2004-10-19 17:04:45 +02:00
|
|
|
CreateNewMenu (1004, 0, &movMenu);
|
2004-10-29 00:03:26 +02:00
|
|
|
movMenuTitle = CFSTR("Movie");
|
2004-10-19 17:04:45 +02:00
|
|
|
SetMenuTitleWithCFString(movMenu, movMenuTitle);
|
|
|
|
|
|
|
|
AppendMenuItemTextWithCFString(movMenu, CFSTR("Half Size"), 0, kHalfScreenCmd, &index);
|
|
|
|
SetMenuItemCommandKey(movMenu, index, 0, '0');
|
|
|
|
|
|
|
|
AppendMenuItemTextWithCFString(movMenu, CFSTR("Normal Size"), 0, kNormalScreenCmd, &index);
|
|
|
|
SetMenuItemCommandKey(movMenu, index, 0, '1');
|
|
|
|
|
|
|
|
AppendMenuItemTextWithCFString(movMenu, CFSTR("Double Size"), 0, kDoubleScreenCmd, &index);
|
|
|
|
SetMenuItemCommandKey(movMenu, index, 0, '2');
|
|
|
|
|
|
|
|
AppendMenuItemTextWithCFString(movMenu, CFSTR("Full Size"), 0, kFullScreenCmd, &index);
|
|
|
|
SetMenuItemCommandKey(movMenu, index, 0, 'F');
|
|
|
|
|
2004-10-29 00:03:26 +02:00
|
|
|
AppendMenuItemTextWithCFString(movMenu, NULL, kMenuItemAttrSeparator, NULL, &index);
|
|
|
|
|
|
|
|
AppendMenuItemTextWithCFString(movMenu, CFSTR("Aspect Ratio"), 0, NULL, &index);
|
|
|
|
|
|
|
|
////Create Aspect Ratio Sub Menu
|
|
|
|
CreateNewMenu (0, 0, &aspectMenu);
|
|
|
|
aspMenuTitle = CFSTR("Aspect Ratio");
|
|
|
|
SetMenuTitleWithCFString(aspectMenu, aspMenuTitle);
|
|
|
|
SetMenuItemHierarchicalMenu(movMenu, 6, aspectMenu);
|
|
|
|
|
|
|
|
AppendMenuItemTextWithCFString(aspectMenu, CFSTR("Keep"), 0, kKeepAspectCmd, &index);
|
|
|
|
CheckMenuItem (aspectMenu, 1, vo_keepaspect);
|
2004-10-29 03:24:14 +02:00
|
|
|
AppendMenuItemTextWithCFString(aspectMenu, CFSTR("Pan-Scan"), 0, kPanScanCmd, &index);
|
2004-11-01 17:17:49 +01:00
|
|
|
CheckMenuItem (aspectMenu, 2, vo_panscan);
|
2004-10-29 00:03:26 +02:00
|
|
|
AppendMenuItemTextWithCFString(aspectMenu, NULL, kMenuItemAttrSeparator, NULL, &index);
|
|
|
|
AppendMenuItemTextWithCFString(aspectMenu, CFSTR("Original"), 0, kAspectOrgCmd, &index);
|
|
|
|
AppendMenuItemTextWithCFString(aspectMenu, CFSTR("4:3"), 0, kAspectFullCmd, &index);
|
|
|
|
AppendMenuItemTextWithCFString(aspectMenu, CFSTR("16:9"), 0, kAspectWideCmd, &index);
|
|
|
|
|
2004-10-19 17:04:45 +02:00
|
|
|
InsertMenu(movMenu, GetMenuID(windMenu)); //insert before Window menu
|
|
|
|
|
|
|
|
DrawMenuBar();
|
2004-05-18 22:49:44 +02:00
|
|
|
|
2004-10-19 17:04:45 +02:00
|
|
|
//create window
|
2004-05-18 22:49:44 +02:00
|
|
|
CreateNewWindow(kDocumentWindowClass, windowAttrs, &winRect, &theWindow);
|
2004-07-15 19:36:01 +02:00
|
|
|
|
|
|
|
CreateWindowGroup(0, &winGroup);
|
|
|
|
SetWindowGroup(theWindow, winGroup);
|
|
|
|
|
2004-05-18 22:49:44 +02:00
|
|
|
//Set window title
|
2004-07-09 18:54:57 +02:00
|
|
|
titleKey = CFSTR("MPlayer - The Movie Player");
|
2004-05-18 22:49:44 +02:00
|
|
|
windowTitle = CFCopyLocalizedString(titleKey, NULL);
|
|
|
|
result = SetWindowTitleWithCFString(theWindow, windowTitle);
|
|
|
|
CFRelease(titleKey);
|
|
|
|
CFRelease(windowTitle);
|
|
|
|
|
|
|
|
//Install event handler
|
2004-10-20 18:38:33 +02:00
|
|
|
const EventTypeSpec commands[] = {
|
|
|
|
{ kEventClassWindow, kEventWindowClosed },
|
|
|
|
{ kEventClassWindow, kEventWindowBoundsChanged },
|
|
|
|
{ kEventClassCommand, kEventCommandProcess }
|
|
|
|
};
|
|
|
|
|
|
|
|
const EventTypeSpec events[] = {
|
|
|
|
{ kEventClassKeyboard, kEventRawKeyDown },
|
|
|
|
{ kEventClassKeyboard, kEventRawKeyRepeat },
|
|
|
|
{ kEventClassMouse, kEventMouseDown },
|
|
|
|
{ kEventClassMouse, kEventMouseWheelMoved }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
InstallApplicationEventHandler (NewEventHandlerUPP (MainWindowEventHandler), GetEventTypeCount(events), events, NULL, NULL);
|
|
|
|
InstallWindowEventHandler (theWindow, NewEventHandlerUPP (MainWindowCommandHandler), GetEventTypeCount(commands), commands, theWindow, NULL);
|
2004-05-18 22:49:44 +02:00
|
|
|
}
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format)
|
2004-04-05 23:20:19 +02:00
|
|
|
{
|
2004-04-26 14:17:26 +02:00
|
|
|
WindowAttributes windowAttrs;
|
2004-05-04 04:57:10 +02:00
|
|
|
OSErr qterr;
|
2004-06-02 02:58:05 +02:00
|
|
|
int i;
|
2004-10-21 13:36:20 +02:00
|
|
|
|
|
|
|
//Get Main device info///////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
deviceHdl = GetMainDevice();
|
|
|
|
|
2004-06-02 02:58:05 +02:00
|
|
|
for(i=0; i<device_id; i++)
|
|
|
|
{
|
|
|
|
deviceHdl = GetNextDevice(deviceHdl);
|
|
|
|
|
|
|
|
if(deviceHdl == NULL)
|
|
|
|
{
|
|
|
|
mp_msg(MSGT_VO, MSGL_FATAL, "Quartz error: Device ID %d do not exist, falling back to main device.\n", device_id);
|
|
|
|
deviceHdl = GetMainDevice();
|
2005-02-14 22:28:21 +01:00
|
|
|
device_id = 0;
|
2004-06-02 02:58:05 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
deviceRect = (*deviceHdl)->gdRect;
|
|
|
|
device_width = deviceRect.right-deviceRect.left;
|
|
|
|
device_height = deviceRect.bottom-deviceRect.top;
|
2004-04-26 14:17:26 +02:00
|
|
|
|
2004-10-28 23:48:41 +02:00
|
|
|
monitor_aspect = (float)device_width/(float)device_height;
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
//misc mplayer setup/////////////////////////////////////////////////////
|
2004-05-18 22:49:44 +02:00
|
|
|
SetRect(&imgRect, 0, 0, width, height);
|
2004-05-04 04:57:10 +02:00
|
|
|
switch (image_format)
|
|
|
|
{
|
|
|
|
case IMGFMT_RGB32:
|
2004-05-07 03:44:08 +02:00
|
|
|
image_depth = 32;
|
2004-05-04 04:57:10 +02:00
|
|
|
break;
|
|
|
|
case IMGFMT_YV12:
|
|
|
|
case IMGFMT_IYUV:
|
|
|
|
case IMGFMT_I420:
|
|
|
|
case IMGFMT_UYVY:
|
|
|
|
case IMGFMT_YUY2:
|
|
|
|
image_depth = 16;
|
|
|
|
break;
|
|
|
|
}
|
2004-05-18 22:49:44 +02:00
|
|
|
image_size = ((imgRect.right*imgRect.bottom*image_depth)+7)/8;
|
2004-04-26 14:17:26 +02:00
|
|
|
|
|
|
|
vo_fs = flags & VOFLAG_FULLSCREEN;
|
|
|
|
|
|
|
|
//get movie aspect
|
2004-10-29 03:24:14 +02:00
|
|
|
panscan_init();
|
2004-04-26 14:17:26 +02:00
|
|
|
aspect_save_orig(width,height);
|
|
|
|
aspect_save_prescale(d_width,d_height);
|
|
|
|
aspect_save_screenres(device_width, device_height);
|
2004-10-29 00:03:26 +02:00
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
aspect(&d_width,&d_height,A_NOZOOM);
|
2004-08-24 22:42:27 +02:00
|
|
|
|
2004-10-29 01:06:35 +02:00
|
|
|
movie_aspect = (float)d_width/(float)d_height;
|
|
|
|
old_movie_aspect = movie_aspect;
|
|
|
|
|
2004-08-24 22:42:27 +02:00
|
|
|
if(image_data)
|
|
|
|
free(image_data);
|
|
|
|
|
|
|
|
image_data = malloc(image_size);
|
2004-04-26 14:17:26 +02:00
|
|
|
|
|
|
|
//Create player window//////////////////////////////////////////////////
|
|
|
|
windowAttrs = kWindowStandardDocumentAttributes
|
|
|
|
| kWindowStandardHandlerAttribute
|
2004-10-27 23:20:11 +02:00
|
|
|
| kWindowCompositingAttribute
|
2004-04-26 14:17:26 +02:00
|
|
|
| kWindowLiveResizeAttribute;
|
2004-05-05 04:38:35 +02:00
|
|
|
|
2004-05-18 22:49:44 +02:00
|
|
|
if (theWindow == NULL)
|
|
|
|
{
|
2004-10-22 02:28:03 +02:00
|
|
|
quartz_CreateWindow(d_width, d_height+border, windowAttrs);
|
2004-05-18 22:49:44 +02:00
|
|
|
|
|
|
|
if (theWindow == NULL)
|
|
|
|
{
|
|
|
|
mp_msg(MSGT_VO, MSGL_FATAL, "Quartz error: Couldn't create window !!!!!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
HideWindow(theWindow);
|
|
|
|
ChangeWindowAttributes(theWindow, ~windowAttrs, windowAttrs);
|
|
|
|
SetRect(&winRect, 0, 0, d_width, d_height);
|
|
|
|
SetRect(&oldWinRect, 0, 0, d_width, d_height);
|
|
|
|
SizeWindow (theWindow, d_width, d_height, 1);
|
|
|
|
}
|
2004-06-02 02:58:05 +02:00
|
|
|
|
2004-10-27 23:20:11 +02:00
|
|
|
//Show window
|
2004-11-02 19:16:41 +01:00
|
|
|
SetThemeWindowBackground( theWindow, kThemeBrushModelessDialogBackgroundActive, TRUE);
|
2004-10-30 21:56:41 +02:00
|
|
|
RepositionWindow(theWindow, NULL, kWindowCenterOnMainScreen);
|
2004-10-27 23:20:11 +02:00
|
|
|
ShowWindow (theWindow);
|
2004-05-07 04:34:22 +02:00
|
|
|
|
2004-05-07 03:44:08 +02:00
|
|
|
switch (image_format)
|
|
|
|
{
|
2004-08-24 22:42:27 +02:00
|
|
|
case IMGFMT_RGB32:
|
|
|
|
{
|
|
|
|
CreateCGContextForPort (GetWindowPort (theWindow), &context);
|
|
|
|
|
|
|
|
dataProviderRef = CGDataProviderCreateWithData (0, image_data, imgRect.right * imgRect.bottom * 4, 0);
|
|
|
|
|
|
|
|
image = CGImageCreate (imgRect.right,
|
|
|
|
imgRect.bottom,
|
|
|
|
8,
|
|
|
|
image_depth,
|
|
|
|
((imgRect.right*32)+7)/8,
|
|
|
|
CGColorSpaceCreateDeviceRGB(),
|
|
|
|
kCGImageAlphaNoneSkipFirst,
|
|
|
|
dataProviderRef, 0, 1, kCGRenderingIntentDefault);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2004-05-07 03:44:08 +02:00
|
|
|
case IMGFMT_YV12:
|
|
|
|
case IMGFMT_IYUV:
|
|
|
|
case IMGFMT_I420:
|
|
|
|
case IMGFMT_UYVY:
|
|
|
|
case IMGFMT_YUY2:
|
|
|
|
{
|
2004-06-23 14:16:34 +02:00
|
|
|
get_image_done = 0;
|
|
|
|
|
|
|
|
if (!EnterMoviesDone)
|
|
|
|
{
|
|
|
|
qterr = EnterMovies();
|
|
|
|
EnterMoviesDone = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
qterr = 0;
|
|
|
|
|
|
|
|
if (qterr)
|
|
|
|
{
|
|
|
|
mp_msg(MSGT_VO, MSGL_FATAL, "Quartz error: EnterMovies (%d)\n", qterr);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SetIdentityMatrix(&matrix);
|
|
|
|
|
|
|
|
if ((d_width != width) || (d_height != height))
|
|
|
|
{
|
|
|
|
ScaleMatrix(&matrix, FixDiv(Long2Fix(d_width),Long2Fix(width)), FixDiv(Long2Fix(d_height),Long2Fix(height)), 0, 0);
|
|
|
|
}
|
|
|
|
|
2004-05-07 03:44:08 +02:00
|
|
|
yuv_qt_stuff.desc = (ImageDescriptionHandle)NewHandleClear( sizeof(ImageDescription) );
|
|
|
|
|
|
|
|
yuv_qt_stuff.extension_colr = NewHandleClear(sizeof(NCLCColorInfoImageDescriptionExtension));
|
|
|
|
((NCLCColorInfoImageDescriptionExtension*)(*yuv_qt_stuff.extension_colr))->colorParamType = kVideoColorInfoImageDescriptionExtensionType;
|
|
|
|
((NCLCColorInfoImageDescriptionExtension*)(*yuv_qt_stuff.extension_colr))->primaries = 2;
|
|
|
|
((NCLCColorInfoImageDescriptionExtension*)(*yuv_qt_stuff.extension_colr))->transferFunction = 2;
|
|
|
|
((NCLCColorInfoImageDescriptionExtension*)(*yuv_qt_stuff.extension_colr))->matrix = 2;
|
|
|
|
|
|
|
|
yuv_qt_stuff.extension_fiel = NewHandleClear(sizeof(FieldInfoImageDescriptionExtension));
|
|
|
|
((FieldInfoImageDescriptionExtension*)(*yuv_qt_stuff.extension_fiel))->fieldCount = 1;
|
|
|
|
((FieldInfoImageDescriptionExtension*)(*yuv_qt_stuff.extension_fiel))->fieldOrderings = 0;
|
|
|
|
|
|
|
|
yuv_qt_stuff.extension_clap = NewHandleClear(sizeof(CleanApertureImageDescriptionExtension));
|
2004-05-18 22:49:44 +02:00
|
|
|
((CleanApertureImageDescriptionExtension*)(*yuv_qt_stuff.extension_clap))->cleanApertureWidthN = imgRect.right;
|
2004-05-07 03:44:08 +02:00
|
|
|
((CleanApertureImageDescriptionExtension*)(*yuv_qt_stuff.extension_clap))->cleanApertureWidthD = 1;
|
2004-05-18 22:49:44 +02:00
|
|
|
((CleanApertureImageDescriptionExtension*)(*yuv_qt_stuff.extension_clap))->cleanApertureHeightN = imgRect.bottom;
|
2004-05-07 03:44:08 +02:00
|
|
|
((CleanApertureImageDescriptionExtension*)(*yuv_qt_stuff.extension_clap))->cleanApertureHeightD = 1;
|
|
|
|
((CleanApertureImageDescriptionExtension*)(*yuv_qt_stuff.extension_clap))->horizOffN = 0;
|
|
|
|
((CleanApertureImageDescriptionExtension*)(*yuv_qt_stuff.extension_clap))->horizOffD = 1;
|
|
|
|
((CleanApertureImageDescriptionExtension*)(*yuv_qt_stuff.extension_clap))->vertOffN = 0;
|
|
|
|
((CleanApertureImageDescriptionExtension*)(*yuv_qt_stuff.extension_clap))->vertOffD = 1;
|
|
|
|
|
|
|
|
yuv_qt_stuff.extension_pasp = NewHandleClear(sizeof(PixelAspectRatioImageDescriptionExtension));
|
|
|
|
((PixelAspectRatioImageDescriptionExtension*)(*yuv_qt_stuff.extension_pasp))->hSpacing = 1;
|
|
|
|
((PixelAspectRatioImageDescriptionExtension*)(*yuv_qt_stuff.extension_pasp))->vSpacing = 1;
|
|
|
|
|
|
|
|
(*yuv_qt_stuff.desc)->idSize = sizeof(ImageDescription);
|
|
|
|
(*yuv_qt_stuff.desc)->cType = image_qtcodec;
|
|
|
|
(*yuv_qt_stuff.desc)->version = 2;
|
|
|
|
(*yuv_qt_stuff.desc)->revisionLevel = 0;
|
|
|
|
(*yuv_qt_stuff.desc)->vendor = 'mpla';
|
2004-05-18 22:49:44 +02:00
|
|
|
(*yuv_qt_stuff.desc)->width = imgRect.right;
|
|
|
|
(*yuv_qt_stuff.desc)->height = imgRect.bottom;
|
2004-05-07 03:44:08 +02:00
|
|
|
(*yuv_qt_stuff.desc)->hRes = Long2Fix(72);
|
|
|
|
(*yuv_qt_stuff.desc)->vRes = Long2Fix(72);
|
|
|
|
(*yuv_qt_stuff.desc)->temporalQuality = 0;
|
|
|
|
(*yuv_qt_stuff.desc)->spatialQuality = codecLosslessQuality;
|
|
|
|
(*yuv_qt_stuff.desc)->frameCount = 1;
|
|
|
|
(*yuv_qt_stuff.desc)->dataSize = 0;
|
|
|
|
(*yuv_qt_stuff.desc)->depth = 24;
|
|
|
|
(*yuv_qt_stuff.desc)->clutID = -1;
|
|
|
|
|
|
|
|
qterr = AddImageDescriptionExtension(yuv_qt_stuff.desc, yuv_qt_stuff.extension_colr, kColorInfoImageDescriptionExtension);
|
2004-05-05 03:04:44 +02:00
|
|
|
if (qterr)
|
|
|
|
{
|
2004-05-18 22:49:44 +02:00
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "Quartz error: AddImageDescriptionExtension [colr] (%d)\n", qterr);
|
2004-05-05 03:04:44 +02:00
|
|
|
}
|
|
|
|
|
2004-05-07 03:44:08 +02:00
|
|
|
qterr = AddImageDescriptionExtension(yuv_qt_stuff.desc, yuv_qt_stuff.extension_fiel, kFieldInfoImageDescriptionExtension);
|
|
|
|
if (qterr)
|
2004-05-05 03:04:44 +02:00
|
|
|
{
|
2004-05-18 22:49:44 +02:00
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "Quartz error: AddImageDescriptionExtension [fiel] (%d)\n", qterr);
|
2004-05-05 03:04:44 +02:00
|
|
|
}
|
|
|
|
|
2004-05-07 03:44:08 +02:00
|
|
|
qterr = AddImageDescriptionExtension(yuv_qt_stuff.desc, yuv_qt_stuff.extension_clap, kCleanApertureImageDescriptionExtension);
|
|
|
|
if (qterr)
|
|
|
|
{
|
2004-05-18 22:49:44 +02:00
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "Quartz error: AddImageDescriptionExtension [clap] (%d)\n", qterr);
|
2004-05-07 03:44:08 +02:00
|
|
|
}
|
2004-05-05 03:04:44 +02:00
|
|
|
|
2004-05-07 03:44:08 +02:00
|
|
|
qterr = AddImageDescriptionExtension(yuv_qt_stuff.desc, yuv_qt_stuff.extension_pasp, kCleanApertureImageDescriptionExtension);
|
|
|
|
if (qterr)
|
|
|
|
{
|
2004-05-18 22:49:44 +02:00
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "Quartz error: AddImageDescriptionExtension [pasp] (%d)\n", qterr);
|
|
|
|
}
|
|
|
|
if (P != NULL) { // second or subsequent movie
|
|
|
|
free(P);
|
2004-05-07 03:44:08 +02:00
|
|
|
}
|
|
|
|
P = calloc(sizeof(PlanarPixmapInfoYUV420) + image_size, 1);
|
|
|
|
switch (image_format)
|
|
|
|
{
|
|
|
|
case IMGFMT_YV12:
|
|
|
|
case IMGFMT_IYUV:
|
|
|
|
case IMGFMT_I420:
|
|
|
|
P->componentInfoY.offset = sizeof(PlanarPixmapInfoYUV420);
|
|
|
|
P->componentInfoCb.offset = P->componentInfoY.offset + image_size / 2;
|
|
|
|
P->componentInfoCr.offset = P->componentInfoCb.offset + image_size / 4;
|
2004-05-18 22:49:44 +02:00
|
|
|
P->componentInfoY.rowBytes = imgRect.right;
|
|
|
|
P->componentInfoCb.rowBytes = imgRect.right / 2;
|
|
|
|
P->componentInfoCr.rowBytes = imgRect.right / 2;
|
2004-05-07 03:44:08 +02:00
|
|
|
image_buffer_size = image_size + sizeof(PlanarPixmapInfoYUV420);
|
|
|
|
break;
|
|
|
|
case IMGFMT_UYVY:
|
|
|
|
case IMGFMT_YUY2:
|
|
|
|
image_buffer_size = image_size;
|
|
|
|
break;
|
|
|
|
}
|
2004-05-04 04:57:10 +02:00
|
|
|
|
2004-05-07 03:44:08 +02:00
|
|
|
qterr = DecompressSequenceBeginS(&seqId,
|
2004-05-04 04:57:10 +02:00
|
|
|
yuv_qt_stuff.desc,
|
2004-05-07 03:44:08 +02:00
|
|
|
(char *)P,
|
2004-05-04 04:57:10 +02:00
|
|
|
image_buffer_size,
|
2004-06-23 14:16:34 +02:00
|
|
|
GetWindowPort(theWindow),
|
2004-05-07 03:44:08 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-05-04 04:57:10 +02:00
|
|
|
((d_width != width) || (d_height != height)) ?
|
2004-05-07 03:44:08 +02:00
|
|
|
&matrix : NULL,
|
2004-05-04 04:57:10 +02:00
|
|
|
srcCopy,
|
2004-05-07 03:44:08 +02:00
|
|
|
NULL,
|
|
|
|
0,
|
2004-05-04 04:57:10 +02:00
|
|
|
codecLosslessQuality,
|
|
|
|
bestSpeedCodec);
|
2004-05-07 03:44:08 +02:00
|
|
|
|
|
|
|
if (qterr)
|
|
|
|
{
|
|
|
|
mp_msg(MSGT_VO, MSGL_FATAL, "Quartz error: DecompressSequenceBeginS (%d)\n", qterr);
|
2004-05-18 22:49:44 +02:00
|
|
|
return -1;
|
2004-05-07 03:44:08 +02:00
|
|
|
}
|
2004-05-05 03:04:44 +02:00
|
|
|
}
|
2004-05-07 03:44:08 +02:00
|
|
|
break;
|
2004-05-04 04:57:10 +02:00
|
|
|
}
|
2004-04-26 14:17:26 +02:00
|
|
|
|
|
|
|
if(vo_fs)
|
|
|
|
window_fullscreen();
|
|
|
|
|
|
|
|
if(vo_ontop)
|
|
|
|
window_ontop();
|
2004-07-23 15:02:40 +02:00
|
|
|
|
2004-07-29 16:59:48 +02:00
|
|
|
if(vo_rootwin)
|
2004-07-23 15:02:40 +02:00
|
|
|
{
|
|
|
|
vo_fs = TRUE;
|
|
|
|
winLevel = 0;
|
|
|
|
SetWindowGroupLevel(winGroup, CGWindowLevelForKey(levelList[winLevel]));
|
|
|
|
window_fullscreen();
|
|
|
|
}
|
2004-04-26 14:17:26 +02:00
|
|
|
|
|
|
|
return 0;
|
2004-04-05 23:20:19 +02:00
|
|
|
}
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
static void check_events(void)
|
2004-04-05 23:20:19 +02:00
|
|
|
{
|
2004-04-26 14:17:26 +02:00
|
|
|
EventRef theEvent;
|
|
|
|
EventTargetRef theTarget;
|
|
|
|
OSStatus theErr;
|
|
|
|
|
|
|
|
//Get event
|
|
|
|
theTarget = GetEventDispatcherTarget();
|
|
|
|
theErr = ReceiveNextEvent(0, 0, kEventDurationNoWait,true, &theEvent);
|
|
|
|
if(theErr == noErr && theEvent != NULL)
|
|
|
|
{
|
|
|
|
SendEventToEventTarget (theEvent, theTarget);
|
|
|
|
ReleaseEvent(theEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
//update activity every 30 seconds to prevent
|
|
|
|
//screensaver from starting up.
|
|
|
|
DateTimeRec d;
|
|
|
|
unsigned long curTime;
|
|
|
|
static unsigned long lastTime = 0;
|
|
|
|
|
|
|
|
GetTime(&d);
|
|
|
|
DateToSeconds( &d, &curTime);
|
|
|
|
|
|
|
|
if( ( (curTime - lastTime) >= 30) || (lastTime == 0))
|
|
|
|
{
|
|
|
|
UpdateSystemActivity(UsrActivity);
|
|
|
|
lastTime = curTime;
|
|
|
|
}
|
|
|
|
}
|
2004-04-05 23:20:19 +02:00
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
static void draw_osd(void)
|
|
|
|
{
|
2004-05-18 22:49:44 +02:00
|
|
|
vo_draw_text(imgRect.right,imgRect.bottom,draw_alpha);
|
2004-04-26 14:17:26 +02:00
|
|
|
}
|
2004-04-05 23:20:19 +02:00
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
static void flip_page(void)
|
|
|
|
{
|
2004-10-20 18:38:33 +02:00
|
|
|
if(theWindow == NULL)
|
|
|
|
return;
|
|
|
|
|
2004-05-07 03:44:08 +02:00
|
|
|
switch (image_format)
|
2004-04-26 14:17:26 +02:00
|
|
|
{
|
2004-08-24 22:42:27 +02:00
|
|
|
case IMGFMT_RGB32:
|
|
|
|
{
|
|
|
|
CGContextDrawImage (context, bounds, image);
|
|
|
|
CGContextFlush (context);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2004-05-07 04:34:22 +02:00
|
|
|
case IMGFMT_YV12:
|
|
|
|
case IMGFMT_IYUV:
|
|
|
|
case IMGFMT_I420:
|
|
|
|
case IMGFMT_UYVY:
|
|
|
|
case IMGFMT_YUY2:
|
|
|
|
if (EnterMoviesDone)
|
|
|
|
{
|
|
|
|
OSErr qterr;
|
|
|
|
CodecFlags flags = 0;
|
|
|
|
qterr = DecompressSequenceFrameWhen(seqId,
|
|
|
|
(char *)P,
|
|
|
|
image_buffer_size,
|
|
|
|
0, //codecFlagUseImageBuffer,
|
|
|
|
&flags,
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
if (qterr)
|
|
|
|
{
|
2004-05-18 22:49:44 +02:00
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "Quartz error: DecompressSequenceFrameWhen in flip_page (%d) flags:0x%08x\n", qterr, flags);
|
2004-05-07 04:34:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2004-04-05 23:20:19 +02:00
|
|
|
}
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
static uint32_t draw_slice(uint8_t *src[], int stride[], int w,int h,int x,int y)
|
2004-04-05 23:20:19 +02:00
|
|
|
{
|
2004-05-07 04:34:22 +02:00
|
|
|
switch (image_format)
|
|
|
|
{
|
2004-05-18 22:49:44 +02:00
|
|
|
case IMGFMT_YV12:
|
|
|
|
case IMGFMT_I420:
|
|
|
|
memcpy_pic(((char*)P) + P->componentInfoY.offset + x + imgRect.right * y, src[0], w, h, imgRect.right, stride[0]);
|
|
|
|
x=x/2;y=y/2;w=w/2;h=h/2;
|
|
|
|
|
|
|
|
memcpy_pic(((char*)P) + P->componentInfoCb.offset + x + imgRect.right / 2 * y, src[1], w, h, imgRect.right / 2, stride[1]);
|
|
|
|
memcpy_pic(((char*)P) + P->componentInfoCr.offset + x + imgRect.right / 2 * y, src[2], w, h, imgRect.right / 2, stride[2]);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case IMGFMT_IYUV:
|
|
|
|
memcpy_pic(((char*)P) + P->componentInfoY.offset + x + imgRect.right * y, src[0], w, h, imgRect.right, stride[0]);
|
|
|
|
x=x/2;y=y/2;w=w/2;h=h/2;
|
|
|
|
|
|
|
|
memcpy_pic(((char*)P) + P->componentInfoCr.offset + x + imgRect.right / 2 * y, src[1], w, h, imgRect.right / 2, stride[1]);
|
|
|
|
memcpy_pic(((char*)P) + P->componentInfoCb.offset + x + imgRect.right / 2 * y, src[2], w, h, imgRect.right / 2, stride[2]);
|
|
|
|
return 0;
|
2004-05-07 04:34:22 +02:00
|
|
|
}
|
2004-04-26 14:17:26 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2004-04-05 23:20:19 +02:00
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
static uint32_t draw_frame(uint8_t *src[])
|
|
|
|
{
|
2004-05-07 04:34:22 +02:00
|
|
|
switch (image_format)
|
|
|
|
{
|
2004-08-24 22:42:27 +02:00
|
|
|
case IMGFMT_RGB32:
|
|
|
|
memcpy(image_data,src[0],image_size);
|
|
|
|
return 0;
|
|
|
|
|
2004-05-07 04:34:22 +02:00
|
|
|
case IMGFMT_UYVY:
|
|
|
|
case IMGFMT_YUY2:
|
2004-05-18 22:49:44 +02:00
|
|
|
memcpy_pic(((char*)P), src[0], imgRect.right * 2, imgRect.bottom, imgRect.right * 2, imgRect.right * 2);
|
2004-05-07 04:34:22 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
2004-04-05 23:20:19 +02:00
|
|
|
}
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
static uint32_t query_format(uint32_t format)
|
2004-04-05 23:20:19 +02:00
|
|
|
{
|
2004-04-26 14:17:26 +02:00
|
|
|
image_format = format;
|
2004-05-07 03:44:08 +02:00
|
|
|
image_qtcodec = 0;
|
2004-08-24 22:42:27 +02:00
|
|
|
|
|
|
|
if (format == IMGFMT_RGB32)
|
|
|
|
{
|
|
|
|
return VFCAP_CSP_SUPPORTED | VFCAP_OSD | VFCAP_HWSCALE_UP | VFCAP_HWSCALE_DOWN;
|
|
|
|
}
|
2004-05-07 03:44:08 +02:00
|
|
|
|
2004-05-05 03:04:44 +02:00
|
|
|
if ((format == IMGFMT_YV12) || (format == IMGFMT_IYUV) || (format == IMGFMT_I420))
|
|
|
|
{
|
|
|
|
image_qtcodec = kMpegYUV420CodecType; //kYUV420CodecType ?;
|
2004-05-18 22:49:44 +02:00
|
|
|
return VFCAP_CSP_SUPPORTED | VFCAP_OSD | VFCAP_HWSCALE_UP | VFCAP_HWSCALE_DOWN | VFCAP_ACCEPT_STRIDE;
|
2004-05-04 04:57:10 +02:00
|
|
|
}
|
|
|
|
|
2004-05-05 03:04:44 +02:00
|
|
|
if (format == IMGFMT_YUY2)
|
|
|
|
{
|
|
|
|
image_qtcodec = kComponentVideoUnsigned;
|
2004-05-18 22:49:44 +02:00
|
|
|
return VFCAP_CSP_SUPPORTED | VFCAP_OSD | VFCAP_HWSCALE_UP | VFCAP_HWSCALE_DOWN;
|
2004-05-04 04:57:10 +02:00
|
|
|
}
|
|
|
|
|
2004-05-05 03:04:44 +02:00
|
|
|
if (format == IMGFMT_UYVY)
|
|
|
|
{
|
|
|
|
image_qtcodec = k422YpCbCr8CodecType;
|
2004-05-18 22:49:44 +02:00
|
|
|
return VFCAP_CSP_SUPPORTED | VFCAP_OSD | VFCAP_HWSCALE_UP | VFCAP_HWSCALE_DOWN;
|
2004-05-05 03:04:44 +02:00
|
|
|
}
|
2004-05-04 04:57:10 +02:00
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
return 0;
|
2004-04-05 23:20:19 +02:00
|
|
|
}
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
static void uninit(void)
|
2004-04-05 23:20:19 +02:00
|
|
|
{
|
2004-05-07 03:44:08 +02:00
|
|
|
OSErr qterr;
|
2004-08-24 22:42:27 +02:00
|
|
|
|
|
|
|
switch (image_format)
|
2004-05-05 03:04:44 +02:00
|
|
|
{
|
2004-08-24 22:42:27 +02:00
|
|
|
case IMGFMT_YV12:
|
|
|
|
case IMGFMT_IYUV:
|
|
|
|
case IMGFMT_I420:
|
|
|
|
case IMGFMT_UYVY:
|
|
|
|
case IMGFMT_YUY2:
|
2004-05-05 03:04:44 +02:00
|
|
|
{
|
2004-08-24 22:42:27 +02:00
|
|
|
if (EnterMoviesDone)
|
|
|
|
{
|
|
|
|
qterr = CDSequenceEnd(seqId);
|
|
|
|
if (qterr)
|
|
|
|
{
|
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "Quartz error: CDSequenceEnd (%d)\n", qterr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2004-05-05 03:04:44 +02:00
|
|
|
}
|
2004-08-24 22:42:27 +02:00
|
|
|
default:
|
|
|
|
break;
|
2004-05-04 04:57:10 +02:00
|
|
|
}
|
2004-05-07 03:44:08 +02:00
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
ShowMenuBar();
|
2004-04-05 23:20:19 +02:00
|
|
|
}
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
static uint32_t preinit(const char *arg)
|
2004-04-05 23:20:19 +02:00
|
|
|
{
|
2004-06-02 02:58:05 +02:00
|
|
|
int parse_err = 0;
|
|
|
|
|
|
|
|
if(arg)
|
|
|
|
{
|
2004-06-23 14:16:34 +02:00
|
|
|
char *parse_pos = (char *)&arg[0];
|
2004-06-02 02:58:05 +02:00
|
|
|
while (parse_pos[0] && !parse_err)
|
|
|
|
{
|
|
|
|
if (strncmp (parse_pos, "device_id=", 10) == 0)
|
|
|
|
{
|
|
|
|
parse_pos = &parse_pos[10];
|
|
|
|
device_id = strtol(parse_pos, &parse_pos, 0);
|
|
|
|
}
|
2004-10-28 16:52:47 +02:00
|
|
|
if (strncmp (parse_pos, "fs_res=", 7) == 0)
|
|
|
|
{
|
|
|
|
parse_pos = &parse_pos[7];
|
|
|
|
fs_res_x = strtol(parse_pos, &parse_pos, 0);
|
|
|
|
parse_pos = &parse_pos[1];
|
|
|
|
fs_res_y = strtol(parse_pos, &parse_pos, 0);
|
|
|
|
}
|
2004-06-02 02:58:05 +02:00
|
|
|
if (parse_pos[0] == ':') parse_pos = &parse_pos[1];
|
|
|
|
else if (parse_pos[0]) parse_err = 1;
|
|
|
|
}
|
|
|
|
}
|
2004-07-09 18:54:57 +02:00
|
|
|
|
2004-12-01 22:22:18 +01:00
|
|
|
#if !defined (MACOSX_FINDER_SUPPORT) || !defined (HAVE_SDL)
|
2004-07-09 18:54:57 +02:00
|
|
|
//this chunk of code is heavily based off SDL_macosx.m from SDL
|
|
|
|
//it uses an Apple private function to request foreground operation
|
|
|
|
|
|
|
|
void CPSEnableForegroundOperation(ProcessSerialNumber* psn);
|
|
|
|
ProcessSerialNumber myProc, frProc;
|
|
|
|
Boolean sameProc;
|
|
|
|
|
|
|
|
if (GetFrontProcess(&frProc) == noErr)
|
|
|
|
{
|
|
|
|
if (GetCurrentProcess(&myProc) == noErr)
|
|
|
|
{
|
|
|
|
if (SameProcess(&frProc, &myProc, &sameProc) == noErr && !sameProc)
|
|
|
|
{
|
|
|
|
CPSEnableForegroundOperation(&myProc);
|
|
|
|
}
|
|
|
|
SetFrontProcess(&myProc);
|
|
|
|
}
|
|
|
|
}
|
2004-11-10 17:43:40 +01:00
|
|
|
#endif
|
2004-07-09 18:54:57 +02:00
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
return 0;
|
2004-04-05 23:20:19 +02:00
|
|
|
}
|
|
|
|
|
2004-05-05 03:04:44 +02:00
|
|
|
static uint32_t draw_yuv_image(mp_image_t *mpi)
|
|
|
|
{
|
|
|
|
// ATM we're only called for planar IMGFMT
|
|
|
|
// drawing is done directly in P
|
|
|
|
// and displaying is in flip_page.
|
2004-05-18 22:49:44 +02:00
|
|
|
return get_image_done ? VO_TRUE : VO_FALSE;
|
2004-05-04 04:57:10 +02:00
|
|
|
}
|
|
|
|
|
2004-05-05 03:04:44 +02:00
|
|
|
static uint32_t get_yuv_image(mp_image_t *mpi)
|
|
|
|
{
|
|
|
|
if(mpi->type!=MP_IMGTYPE_EXPORT) return VO_FALSE;
|
2004-05-04 04:57:10 +02:00
|
|
|
|
2004-05-05 03:04:44 +02:00
|
|
|
if(mpi->imgfmt!=image_format) return VO_FALSE;
|
2004-05-04 04:57:10 +02:00
|
|
|
|
2004-05-05 03:04:44 +02:00
|
|
|
if(mpi->flags&MP_IMGFLAG_PLANAR)
|
|
|
|
{
|
|
|
|
if (mpi->num_planes != 3)
|
|
|
|
{
|
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "Quartz error: only 3 planes allowed in get_yuv_image for planar (%d) \n", mpi->num_planes);
|
|
|
|
return VO_FALSE;
|
|
|
|
}
|
2004-05-04 04:57:10 +02:00
|
|
|
|
2004-05-05 03:04:44 +02:00
|
|
|
mpi->planes[0]=((char*)P) + P->componentInfoY.offset;
|
2004-05-18 22:49:44 +02:00
|
|
|
mpi->stride[0]=imgRect.right;
|
|
|
|
mpi->width=imgRect.right;
|
2004-05-04 04:57:10 +02:00
|
|
|
|
2004-05-05 03:04:44 +02:00
|
|
|
if(mpi->flags&MP_IMGFLAG_SWAPPED)
|
|
|
|
{
|
|
|
|
// I420
|
|
|
|
mpi->planes[1]=((char*)P) + P->componentInfoCb.offset;
|
|
|
|
mpi->planes[2]=((char*)P) + P->componentInfoCr.offset;
|
2004-05-18 22:49:44 +02:00
|
|
|
mpi->stride[1]=imgRect.right/2;
|
|
|
|
mpi->stride[2]=imgRect.right/2;
|
2004-05-05 03:04:44 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// YV12
|
|
|
|
mpi->planes[1]=((char*)P) + P->componentInfoCr.offset;
|
|
|
|
mpi->planes[2]=((char*)P) + P->componentInfoCb.offset;
|
2004-05-18 22:49:44 +02:00
|
|
|
mpi->stride[1]=imgRect.right/2;
|
|
|
|
mpi->stride[2]=imgRect.right/2;
|
2004-05-05 03:04:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mpi->flags|=MP_IMGFLAG_DIRECT;
|
2004-05-18 22:49:44 +02:00
|
|
|
get_image_done = 1;
|
2004-05-05 03:04:44 +02:00
|
|
|
return VO_TRUE;
|
|
|
|
}
|
|
|
|
else
|
2004-05-07 04:34:22 +02:00
|
|
|
{
|
|
|
|
// doesn't work yet
|
2004-05-05 03:04:44 +02:00
|
|
|
if (mpi->num_planes != 1)
|
|
|
|
{
|
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "Quartz error: only 1 plane allowed in get_yuv_image for packed (%d) \n", mpi->num_planes);
|
|
|
|
return VO_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
mpi->planes[0] = (char*)P;
|
2004-05-18 22:49:44 +02:00
|
|
|
mpi->stride[0] = imgRect.right * 2;
|
|
|
|
mpi->width=imgRect.right;
|
2004-05-05 03:04:44 +02:00
|
|
|
mpi->flags|=MP_IMGFLAG_DIRECT;
|
2004-05-18 22:49:44 +02:00
|
|
|
get_image_done = 1;
|
2004-05-05 03:04:44 +02:00
|
|
|
return VO_TRUE;
|
|
|
|
}
|
|
|
|
return VO_FALSE;
|
2004-05-04 04:57:10 +02:00
|
|
|
}
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
static uint32_t control(uint32_t request, void *data, ...)
|
2004-04-05 23:20:19 +02:00
|
|
|
{
|
2004-05-05 03:04:44 +02:00
|
|
|
switch (request)
|
|
|
|
{
|
|
|
|
case VOCTRL_PAUSE: return (int_pause=1);
|
|
|
|
case VOCTRL_RESUME: return (int_pause=0);
|
2004-05-12 22:47:14 +02:00
|
|
|
case VOCTRL_FULLSCREEN: vo_fs = (!(vo_fs)); window_fullscreen(); return VO_TRUE;
|
|
|
|
case VOCTRL_ONTOP: vo_ontop = (!(vo_ontop)); window_ontop(); return VO_TRUE;
|
2004-05-05 03:04:44 +02:00
|
|
|
case VOCTRL_QUERY_FORMAT: return query_format(*((uint32_t*)data));
|
2004-10-29 03:24:14 +02:00
|
|
|
case VOCTRL_GET_PANSCAN: return VO_TRUE;
|
2004-11-01 17:17:49 +01:00
|
|
|
case VOCTRL_SET_PANSCAN: window_panscan(); return VO_TRUE;
|
2004-10-29 03:24:14 +02:00
|
|
|
|
2004-05-05 03:04:44 +02:00
|
|
|
case VOCTRL_GET_IMAGE:
|
|
|
|
switch (image_format)
|
|
|
|
{
|
|
|
|
case IMGFMT_YV12:
|
|
|
|
case IMGFMT_IYUV:
|
|
|
|
case IMGFMT_I420:
|
2004-05-18 22:49:44 +02:00
|
|
|
case IMGFMT_UYVY:
|
|
|
|
case IMGFMT_YUY2:
|
2004-05-05 03:04:44 +02:00
|
|
|
return get_yuv_image(data);
|
|
|
|
break;
|
2004-05-18 22:49:44 +02:00
|
|
|
default:
|
|
|
|
break;
|
2004-05-05 03:04:44 +02:00
|
|
|
}
|
|
|
|
case VOCTRL_DRAW_IMAGE:
|
|
|
|
switch (image_format)
|
|
|
|
{
|
|
|
|
case IMGFMT_YV12:
|
|
|
|
case IMGFMT_IYUV:
|
|
|
|
case IMGFMT_I420:
|
2004-05-18 22:49:44 +02:00
|
|
|
case IMGFMT_UYVY:
|
|
|
|
case IMGFMT_YUY2:
|
2004-05-05 03:04:44 +02:00
|
|
|
return draw_yuv_image(data);
|
|
|
|
break;
|
2004-05-18 22:49:44 +02:00
|
|
|
default:
|
|
|
|
break;
|
2004-05-05 03:04:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return VO_NOTIMPL;
|
2004-04-05 23:20:19 +02:00
|
|
|
}
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
void window_resized()
|
2004-04-05 23:20:19 +02:00
|
|
|
{
|
2004-04-26 14:17:26 +02:00
|
|
|
float aspectX;
|
|
|
|
float aspectY;
|
|
|
|
|
2004-11-02 19:16:41 +01:00
|
|
|
int padding = 0;
|
2004-04-26 14:17:26 +02:00
|
|
|
|
|
|
|
uint32_t d_width;
|
|
|
|
uint32_t d_height;
|
|
|
|
|
2004-10-27 23:20:11 +02:00
|
|
|
CGRect tmpBounds;
|
2004-10-22 02:28:03 +02:00
|
|
|
|
2004-06-23 14:16:34 +02:00
|
|
|
GetPortBounds( GetWindowPort(theWindow), &winRect );
|
2004-04-26 14:17:26 +02:00
|
|
|
|
2004-10-29 00:03:26 +02:00
|
|
|
if(vo_keepaspect)
|
|
|
|
{
|
2004-04-26 14:17:26 +02:00
|
|
|
aspect( &d_width, &d_height, A_NOZOOM);
|
2004-10-29 00:03:26 +02:00
|
|
|
d_height = ((float)d_width/movie_aspect);
|
2004-04-26 14:17:26 +02:00
|
|
|
|
|
|
|
aspectX = (float)((float)winRect.right/(float)d_width);
|
2004-10-22 02:28:03 +02:00
|
|
|
aspectY = (float)((float)(winRect.bottom-border)/(float)d_height);
|
2004-04-26 14:17:26 +02:00
|
|
|
|
2004-10-22 02:28:03 +02:00
|
|
|
if((d_height*aspectX)>(winRect.bottom-border))
|
2004-04-26 14:17:26 +02:00
|
|
|
{
|
|
|
|
padding = (winRect.right - d_width*aspectY)/2;
|
|
|
|
SetRect(&dstRect, padding, 0, d_width*aspectY+padding, d_height*aspectY);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-10-22 02:28:03 +02:00
|
|
|
padding = ((winRect.bottom-border) - d_height*aspectX)/2;
|
2004-04-26 14:17:26 +02:00
|
|
|
SetRect(&dstRect, 0, padding, (d_width*aspectX), d_height*aspectX+padding);
|
|
|
|
}
|
2004-10-29 00:03:26 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SetRect(&dstRect, 0, 0, winRect.right, winRect.bottom-border);
|
|
|
|
}
|
2004-04-26 14:17:26 +02:00
|
|
|
|
2004-06-02 02:58:05 +02:00
|
|
|
//Clear Background
|
2004-11-02 19:16:41 +01:00
|
|
|
SetThemeWindowBackground( theWindow, kThemeBrushUtilityWindowBackgroundInactive, TRUE);
|
2004-10-27 23:20:11 +02:00
|
|
|
tmpBounds = CGRectMake( 0, border, winRect.right, winRect.bottom);
|
2004-10-22 02:28:03 +02:00
|
|
|
CreateCGContextForPort(GetWindowPort(theWindow),&context);
|
2004-10-30 21:56:41 +02:00
|
|
|
CGContextClearRect(context, tmpBounds);
|
2004-08-24 22:42:27 +02:00
|
|
|
|
|
|
|
switch (image_format)
|
2004-05-07 03:44:08 +02:00
|
|
|
{
|
2004-08-24 22:42:27 +02:00
|
|
|
case IMGFMT_RGB32:
|
2004-05-07 03:44:08 +02:00
|
|
|
{
|
2004-10-27 23:20:11 +02:00
|
|
|
bounds = CGRectMake(dstRect.left, dstRect.top+border, dstRect.right-dstRect.left, dstRect.bottom-dstRect.top);
|
2004-08-24 22:42:27 +02:00
|
|
|
CreateCGContextForPort (GetWindowPort (theWindow), &context);
|
|
|
|
break;
|
2004-05-05 03:04:44 +02:00
|
|
|
}
|
2004-08-24 22:42:27 +02:00
|
|
|
case IMGFMT_YV12:
|
|
|
|
case IMGFMT_IYUV:
|
|
|
|
case IMGFMT_I420:
|
|
|
|
case IMGFMT_UYVY:
|
|
|
|
case IMGFMT_YUY2:
|
|
|
|
{
|
|
|
|
long scale_X = FixDiv(Long2Fix(dstRect.right - dstRect.left),Long2Fix(imgRect.right));
|
|
|
|
long scale_Y = FixDiv(Long2Fix(dstRect.bottom - dstRect.top),Long2Fix(imgRect.bottom));
|
2004-05-07 03:44:08 +02:00
|
|
|
|
2004-08-24 22:42:27 +02:00
|
|
|
SetIdentityMatrix(&matrix);
|
|
|
|
if (((dstRect.right - dstRect.left) != imgRect.right) || ((dstRect.bottom - dstRect.right) != imgRect.bottom))
|
|
|
|
{
|
|
|
|
ScaleMatrix(&matrix, scale_X, scale_Y, 0, 0);
|
|
|
|
|
|
|
|
if (padding > 0)
|
|
|
|
{
|
|
|
|
TranslateMatrix(&matrix, Long2Fix(dstRect.left), Long2Fix(dstRect.top));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SetDSequenceMatrix(seqId, &matrix);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2004-04-05 23:20:19 +02:00
|
|
|
}
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
void window_ontop()
|
2004-05-12 22:47:14 +02:00
|
|
|
{
|
2004-10-28 16:52:47 +02:00
|
|
|
if(!vo_quartz_fs)
|
|
|
|
{
|
2004-07-15 19:36:01 +02:00
|
|
|
//Cycle between level
|
|
|
|
winLevel++;
|
|
|
|
if(winLevel>2)
|
|
|
|
winLevel = 0;
|
|
|
|
|
|
|
|
//hide menu bar and mouse cursor if in fullscreen and quiting wallpaper mode
|
|
|
|
if(vo_fs)
|
|
|
|
{
|
|
|
|
if(winLevel != 0)
|
|
|
|
{
|
2004-11-01 18:19:25 +01:00
|
|
|
if(device_id == 0)
|
|
|
|
{
|
|
|
|
HideMenuBar();
|
|
|
|
HideCursor();
|
|
|
|
}
|
2004-07-15 19:36:01 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ShowMenuBar();
|
2004-07-16 12:13:26 +02:00
|
|
|
ShowCursor();
|
2004-07-15 19:36:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-28 16:52:47 +02:00
|
|
|
}
|
2004-07-15 19:36:01 +02:00
|
|
|
SetWindowGroupLevel(winGroup, CGWindowLevelForKey(levelList[winLevel]));
|
2004-04-05 23:20:19 +02:00
|
|
|
}
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
void window_fullscreen()
|
2004-04-05 23:20:19 +02:00
|
|
|
{
|
2004-10-28 16:52:47 +02:00
|
|
|
static Ptr restoreState = NULL;
|
|
|
|
|
2004-04-26 14:17:26 +02:00
|
|
|
//go fullscreen
|
2004-05-07 03:44:08 +02:00
|
|
|
if(vo_fs)
|
2004-04-26 14:17:26 +02:00
|
|
|
{
|
2004-07-15 19:36:01 +02:00
|
|
|
if(winLevel != 0)
|
|
|
|
{
|
2004-11-01 18:19:25 +01:00
|
|
|
if(device_id == 0)
|
|
|
|
{
|
|
|
|
HideMenuBar();
|
|
|
|
HideCursor();
|
|
|
|
}
|
2004-10-28 16:52:47 +02:00
|
|
|
|
|
|
|
if(fs_res_x != 0 || fs_res_y != 0)
|
|
|
|
{
|
2004-11-01 17:17:49 +01:00
|
|
|
BeginFullScreen( &restoreState, deviceHdl, &fs_res_x, &fs_res_y, NULL, NULL, NULL);
|
2004-10-28 16:52:47 +02:00
|
|
|
|
|
|
|
//Get Main device info///////////////////////////////////////////////////
|
|
|
|
deviceRect = (*deviceHdl)->gdRect;
|
|
|
|
|
|
|
|
device_width = deviceRect.right;
|
|
|
|
device_height = deviceRect.bottom;
|
|
|
|
}
|
2004-07-15 19:36:01 +02:00
|
|
|
}
|
2004-04-26 14:17:26 +02:00
|
|
|
|
|
|
|
//save old window size
|
2004-05-18 22:49:44 +02:00
|
|
|
if (!vo_quartz_fs)
|
2004-10-30 21:56:41 +02:00
|
|
|
{
|
2004-05-18 22:49:44 +02:00
|
|
|
GetWindowPortBounds(theWindow, &oldWinRect);
|
2004-10-30 21:56:41 +02:00
|
|
|
GetWindowBounds(theWindow, kWindowContentRgn, &oldWinBounds);
|
|
|
|
}
|
2004-04-26 14:17:26 +02:00
|
|
|
|
|
|
|
//go fullscreen
|
2004-10-22 02:28:03 +02:00
|
|
|
border = 0;
|
2004-11-01 17:17:49 +01:00
|
|
|
panscan_calc();
|
2004-11-03 00:01:25 +01:00
|
|
|
ChangeWindowAttributes(theWindow, kWindowNoShadowAttribute, kWindowResizableAttribute);
|
2004-11-01 17:17:49 +01:00
|
|
|
MoveWindow(theWindow, deviceRect.left-(vo_panscan_x >> 1), deviceRect.top-(vo_panscan_y >> 1), 1);
|
|
|
|
SizeWindow(theWindow, device_width+vo_panscan_x, device_height+vo_panscan_y,1);
|
2004-05-18 22:49:44 +02:00
|
|
|
|
|
|
|
vo_quartz_fs = 1;
|
2004-04-26 14:17:26 +02:00
|
|
|
}
|
|
|
|
else //go back to windowed mode
|
|
|
|
{
|
2004-10-28 16:52:47 +02:00
|
|
|
if(restoreState != NULL)
|
|
|
|
{
|
|
|
|
EndFullScreen(restoreState, NULL);
|
|
|
|
|
|
|
|
//Get Main device info///////////////////////////////////////////////////
|
|
|
|
deviceRect = (*deviceHdl)->gdRect;
|
|
|
|
|
|
|
|
device_width = deviceRect.right;
|
|
|
|
device_height = deviceRect.bottom;
|
|
|
|
restoreState = NULL;
|
|
|
|
}
|
2004-04-26 14:17:26 +02:00
|
|
|
ShowMenuBar();
|
|
|
|
|
|
|
|
//show mouse cursor
|
|
|
|
ShowCursor();
|
|
|
|
|
|
|
|
//revert window to previous setting
|
2004-11-02 19:16:41 +01:00
|
|
|
border = 15;
|
|
|
|
ChangeWindowAttributes(theWindow, kWindowResizableAttribute, kWindowNoShadowAttribute);
|
2004-05-18 22:49:44 +02:00
|
|
|
SizeWindow(theWindow, oldWinRect.right, oldWinRect.bottom,1);
|
2004-10-30 21:56:41 +02:00
|
|
|
MoveWindow(theWindow, oldWinBounds.left, oldWinBounds.top, 1);
|
2004-05-18 22:49:44 +02:00
|
|
|
|
|
|
|
vo_quartz_fs = 0;
|
2004-04-26 14:17:26 +02:00
|
|
|
}
|
|
|
|
|
2004-04-05 23:20:19 +02:00
|
|
|
}
|
2004-11-01 17:17:49 +01:00
|
|
|
|
|
|
|
void window_panscan()
|
|
|
|
{
|
|
|
|
panscan_calc();
|
|
|
|
|
|
|
|
if(vo_panscan > 0)
|
|
|
|
CheckMenuItem (aspectMenu, 2, 1);
|
|
|
|
else
|
|
|
|
CheckMenuItem (aspectMenu, 2, 0);
|
|
|
|
|
|
|
|
if(vo_quartz_fs)
|
|
|
|
{
|
|
|
|
MoveWindow(theWindow, deviceRect.left-(vo_panscan_x >> 1), deviceRect.top-(vo_panscan_y >> 1), 1);
|
|
|
|
SizeWindow(theWindow, device_width+vo_panscan_x, device_height+vo_panscan_y,1);
|
|
|
|
}
|
|
|
|
}
|