Commit 1dc1aa8e authored by Tony Castley's avatar Tony Castley

Resizing the video out window in BeOS now retains the scaling.

parent 20fece04
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* VideoWindow.h: BeOS video window class prototype * VideoWindow.h: BeOS video window class prototype
***************************************************************************** *****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN * Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: VideoWindow.h,v 1.6 2001/09/12 01:30:07 tcastley Exp $ * $Id: VideoWindow.h,v 1.7 2001/10/21 06:06:20 tcastley Exp $
* *
* Authors: Jean-Marc Dressler <polux@via.ecp.fr> * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Tony Castley <tcastley@mail.powerup.com.au> * Tony Castley <tcastley@mail.powerup.com.au>
...@@ -55,25 +55,20 @@ public: ...@@ -55,25 +55,20 @@ public:
int32 i_screen_depth; int32 i_screen_depth;
int32 i_width; int32 i_width;
int32 i_height; int32 i_height;
struct vout_thread_s *p_vout;
int32 fRowBytes; int32 fRowBytes;
uint32 fNumClipRects;
int i_buffer_index; int i_buffer_index;
bool fDirty;
thread_id fDrawThreadID;
BBitmap *bitmap[2]; BBitmap *bitmap[2];
BBitmap *drawthis;
VLCView *view; VLCView *view;
thread_id fDrawThreadID;
bool teardownwindow; bool teardownwindow;
bool is_zoomed; bool is_zoomed;
bool fUsingOverlay;
BScreen *screen; struct vout_thread_s *p_vout;
private: private:
display_mode old_mode; // display_mode old_mode;
BRect rect; BRect rect;
}; };
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vout_beos.cpp: beos video output display method * vout_beos.cpp: beos video output display method
***************************************************************************** *****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN * Copyright (C) 2000, 2001 VideoLAN
* $Id: vout_beos.cpp,v 1.30 2001/09/26 12:32:25 massiot Exp $ * $Id: vout_beos.cpp,v 1.31 2001/10/21 06:06:20 tcastley Exp $
* *
* Authors: Jean-Marc Dressler <polux@via.ecp.fr> * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -140,13 +140,12 @@ int32 Draw(void *data) ...@@ -140,13 +140,12 @@ int32 Draw(void *data)
*****************************************************************************/ *****************************************************************************/
VideoWindow::VideoWindow(BRect frame, const char *name, vout_thread_t *p_video_output ) VideoWindow::VideoWindow(BRect frame, const char *name, vout_thread_t *p_video_output )
: BWindow(frame, name, B_TITLED_WINDOW, NULL) : BWindow(frame, name, B_TITLED_WINDOW, B_OUTLINE_RESIZE)
{ {
/* set the VideoWindow variables */ /* set the VideoWindow variables */
teardownwindow = false; teardownwindow = false;
is_zoomed = false; is_zoomed = false;
fUsingOverlay = false;
p_video_output->b_YCbr = false; p_video_output->b_YCbr = false;
/* create the view to do the display */ /* create the view to do the display */
...@@ -169,7 +168,6 @@ VideoWindow::VideoWindow(BRect frame, const char *name, vout_thread_t *p_video_o ...@@ -169,7 +168,6 @@ VideoWindow::VideoWindow(BRect frame, const char *name, vout_thread_t *p_video_o
fRowBytes = bitmap[0]->BytesPerRow(); fRowBytes = bitmap[0]->BytesPerRow();
i_screen_depth = 8 * i_bytes_per_pixel; i_screen_depth = 8 * i_bytes_per_pixel;
fDirty = false;
Show(); Show();
} }
...@@ -191,6 +189,27 @@ VideoWindow::~VideoWindow() ...@@ -191,6 +189,27 @@ VideoWindow::~VideoWindow()
*****************************************************************************/ *****************************************************************************/
void VideoWindow::FrameResized( float width, float height ) void VideoWindow::FrameResized( float width, float height )
{ {
if (is_zoomed)
{
return;
}
float width_scale;
float height_scale;
float orig_width = bitmap[0]->Bounds().Width();
float orig_height = bitmap[0]->Bounds().Height();
width_scale = width / orig_width;
height_scale = height / orig_height;
/* if the width is proportionally smaller */
if (width_scale <= height_scale)
{
ResizeTo(width, orig_height * width_scale);
}
else /* if the height is proportionally smaller */
{
ResizeTo(orig_width * height_scale, height);
}
} }
/***************************************************************************** /*****************************************************************************
...@@ -349,12 +368,7 @@ int vout_Create( vout_thread_t *p_vout ) ...@@ -349,12 +368,7 @@ int vout_Create( vout_thread_t *p_vout )
return( 1 ); return( 1 );
} }
/* Set video window's size */ p_vout->b_scale = false;
p_vout->b_scale = true;
intf_Msg("Initial Width: %d Height: %d",
p_vout->i_width,
p_vout->i_height);
/* Open and initialize device */ /* Open and initialize device */
if( BeosOpenDisplay( p_vout ) ) if( BeosOpenDisplay( p_vout ) )
...@@ -447,12 +461,12 @@ void vout_Display( vout_thread_t *p_vout ) ...@@ -447,12 +461,12 @@ void vout_Display( vout_thread_t *p_vout )
p_win->i_buffer_index = p_vout->i_buffer_index; p_win->i_buffer_index = p_vout->i_buffer_index;
p_vout->i_buffer_index = ++p_vout->i_buffer_index & 1; p_vout->i_buffer_index = ++p_vout->i_buffer_index & 1;
if (!p_win->teardownwindow)
{
p_win->fDrawThreadID = spawn_thread(Draw, "drawing_thread", p_win->fDrawThreadID = spawn_thread(Draw, "drawing_thread",
B_DISPLAY_PRIORITY, (void*) p_win); B_DISPLAY_PRIORITY, (void*) p_win);
wait_for_thread(p_win->fDrawThreadID, &status); wait_for_thread(p_win->fDrawThreadID, &status);
}
} }
/* following functions are local */ /* following functions are local */
......
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