Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
a7405bd0
Commit
a7405bd0
authored
Jul 24, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/access/screen.c: win32 support for screen capture (colors are inverted right now).
parent
7465431f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
126 additions
and
2 deletions
+126
-2
modules/access/screen.c
modules/access/screen.c
+126
-2
No files found.
modules/access/screen.c
View file @
a7405bd0
...
@@ -74,6 +74,13 @@ struct demux_sys_t
...
@@ -74,6 +74,13 @@ struct demux_sys_t
#ifndef WIN32
#ifndef WIN32
Display
*
p_display
;
Display
*
p_display
;
#else
HDC
hdc_src
;
HDC
hdc_dst
;
HBITMAP
hbmp
;
HGDIOBJ
hgdi_backup
;
uint8_t
*
p_buffer
;
#endif
#endif
};
};
...
@@ -106,6 +113,10 @@ static int Open( vlc_object_t *p_this )
...
@@ -106,6 +113,10 @@ static int Open( vlc_object_t *p_this )
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
msg_Dbg
(
p_demux
,
"screen width: %i, height: %i, depth: %i"
,
p_sys
->
fmt
.
video
.
i_width
,
p_sys
->
fmt
.
video
.
i_height
,
p_sys
->
fmt
.
video
.
i_bits_per_pixel
);
p_sys
->
es
=
es_out_Add
(
p_demux
->
out
,
&
p_sys
->
fmt
);
p_sys
->
es
=
es_out_Add
(
p_demux
->
out
,
&
p_sys
->
fmt
);
/* Update default_pts to a suitable value for screen access */
/* Update default_pts to a suitable value for screen access */
...
@@ -166,7 +177,88 @@ static int Demux( demux_t *p_demux )
...
@@ -166,7 +177,88 @@ static int Demux( demux_t *p_demux )
#ifdef WIN32
#ifdef WIN32
static
int
InitCapture
(
demux_t
*
p_demux
)
static
int
InitCapture
(
demux_t
*
p_demux
)
{
{
return
VLC_EGENERIC
;
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
int
i_chroma
;
BITMAPINFO
bmi
;
/* Get the device context for the whole screen */
p_sys
->
hdc_src
=
CreateDC
(
"DISPLAY"
,
NULL
,
NULL
,
NULL
);
if
(
!
p_sys
->
hdc_src
)
{
msg_Err
(
p_demux
,
"cannot get device context"
);
return
VLC_EGENERIC
;
}
p_sys
->
hdc_dst
=
CreateCompatibleDC
(
p_sys
->
hdc_src
);
if
(
!
p_sys
->
hdc_dst
)
{
msg_Err
(
p_demux
,
"cannot get compat device context"
);
ReleaseDC
(
0
,
p_sys
->
hdc_src
);
return
VLC_EGENERIC
;
}
p_sys
->
fmt
.
video
.
i_bits_per_pixel
=
GetDeviceCaps
(
p_sys
->
hdc_src
,
BITSPIXEL
);
switch
(
p_sys
->
fmt
.
video
.
i_bits_per_pixel
)
{
case
8
:
/* FIXME: set the palette */
i_chroma
=
VLC_FOURCC
(
'R'
,
'G'
,
'B'
,
'2'
);
break
;
case
15
:
i_chroma
=
VLC_FOURCC
(
'R'
,
'V'
,
'1'
,
'5'
);
break
;
case
16
:
i_chroma
=
VLC_FOURCC
(
'R'
,
'V'
,
'1'
,
'6'
);
break
;
case
24
:
i_chroma
=
VLC_FOURCC
(
'R'
,
'V'
,
'2'
,
'4'
);
break
;
case
32
:
i_chroma
=
VLC_FOURCC
(
'R'
,
'V'
,
'3'
,
'2'
);
break
;
default:
msg_Err
(
p_demux
,
"unknown screen depth %i"
,
p_sys
->
fmt
.
video
.
i_bits_per_pixel
);
ReleaseDC
(
0
,
p_sys
->
hdc_src
);
ReleaseDC
(
0
,
p_sys
->
hdc_dst
);
return
VLC_EGENERIC
;
}
es_format_Init
(
&
p_sys
->
fmt
,
VIDEO_ES
,
i_chroma
);
p_sys
->
fmt
.
video
.
i_width
=
GetDeviceCaps
(
p_sys
->
hdc_src
,
HORZRES
);
p_sys
->
fmt
.
video
.
i_height
=
GetDeviceCaps
(
p_sys
->
hdc_src
,
VERTRES
);
p_sys
->
fmt
.
video
.
i_bits_per_pixel
=
GetDeviceCaps
(
p_sys
->
hdc_src
,
BITSPIXEL
);
/* Create the bitmap info header */
bmi
.
bmiHeader
.
biSize
=
sizeof
(
BITMAPINFOHEADER
);
bmi
.
bmiHeader
.
biWidth
=
p_sys
->
fmt
.
video
.
i_width
;
bmi
.
bmiHeader
.
biHeight
=
-
p_sys
->
fmt
.
video
.
i_height
;
bmi
.
bmiHeader
.
biPlanes
=
1
;
bmi
.
bmiHeader
.
biBitCount
=
p_sys
->
fmt
.
video
.
i_bits_per_pixel
;
bmi
.
bmiHeader
.
biCompression
=
BI_RGB
;
bmi
.
bmiHeader
.
biSizeImage
=
0
;
bmi
.
bmiHeader
.
biXPelsPerMeter
=
bmi
.
bmiHeader
.
biYPelsPerMeter
=
0
;
bmi
.
bmiHeader
.
biClrUsed
=
0
;
bmi
.
bmiHeader
.
biClrImportant
=
0
;
/* Create the bitmap storage space */
p_sys
->
hbmp
=
CreateDIBSection
(
p_sys
->
hdc_dst
,
(
BITMAPINFO
*
)
&
bmi
,
DIB_RGB_COLORS
,
(
void
**
)
&
p_sys
->
p_buffer
,
NULL
,
0
);
if
(
!
p_sys
->
hbmp
||
!
p_sys
->
p_buffer
)
{
msg_Err
(
p_demux
,
"cannot create bitmap"
);
if
(
p_sys
->
hbmp
)
DeleteObject
(
p_sys
->
hbmp
);
ReleaseDC
(
0
,
p_sys
->
hdc_src
);
DeleteDC
(
p_sys
->
hdc_dst
);
return
VLC_EGENERIC
;
}
/* Select the bitmap into the compatible DC */
p_sys
->
hgdi_backup
=
SelectObject
(
p_sys
->
hdc_dst
,
p_sys
->
hbmp
);
if
(
!
p_sys
->
hgdi_backup
)
{
msg_Err
(
p_demux
,
"cannot select bitmap"
);
}
return
VLC_SUCCESS
;
}
}
#else
#else
...
@@ -215,6 +307,7 @@ static int InitCapture( demux_t *p_demux )
...
@@ -215,6 +307,7 @@ static int InitCapture( demux_t *p_demux )
es_format_Init
(
&
p_sys
->
fmt
,
VIDEO_ES
,
i_chroma
);
es_format_Init
(
&
p_sys
->
fmt
,
VIDEO_ES
,
i_chroma
);
p_sys
->
fmt
.
video
.
i_width
=
win_info
.
width
;
p_sys
->
fmt
.
video
.
i_width
=
win_info
.
width
;
p_sys
->
fmt
.
video
.
i_height
=
win_info
.
height
;
p_sys
->
fmt
.
video
.
i_height
=
win_info
.
height
;
p_sys
->
fmt
.
video
.
i_bits_per_pixel
=
win_info
.
depth
;
#if 0
#if 0
win_info.visual->red_mask;
win_info.visual->red_mask;
...
@@ -230,8 +323,15 @@ static int InitCapture( demux_t *p_demux )
...
@@ -230,8 +323,15 @@ static int InitCapture( demux_t *p_demux )
#ifdef WIN32
#ifdef WIN32
static
int
CloseCapture
(
demux_t
*
p_demux
)
static
int
CloseCapture
(
demux_t
*
p_demux
)
{
{
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
SelectObject
(
p_sys
->
hdc_dst
,
p_sys
->
hgdi_backup
);
DeleteObject
(
p_sys
->
hbmp
);
DeleteDC
(
p_sys
->
hdc_dst
);
ReleaseDC
(
0
,
p_sys
->
hdc_src
);
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
#else
#else
static
int
CloseCapture
(
demux_t
*
p_demux
)
static
int
CloseCapture
(
demux_t
*
p_demux
)
{
{
...
@@ -245,8 +345,32 @@ static int CloseCapture( demux_t *p_demux )
...
@@ -245,8 +345,32 @@ static int CloseCapture( demux_t *p_demux )
#ifdef WIN32
#ifdef WIN32
static
block_t
*
Capture
(
demux_t
*
p_demux
)
static
block_t
*
Capture
(
demux_t
*
p_demux
)
{
{
return
NULL
;
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
block_t
*
p_block
;
int
i_size
;
if
(
!
BitBlt
(
p_sys
->
hdc_dst
,
0
,
0
,
p_sys
->
fmt
.
video
.
i_width
,
p_sys
->
fmt
.
video
.
i_height
,
p_sys
->
hdc_src
,
0
,
0
,
SRCCOPY
)
)
{
msg_Err
(
p_demux
,
"error during BitBlt()"
);
return
NULL
;
}
i_size
=
(
p_sys
->
fmt
.
video
.
i_bits_per_pixel
+
7
)
/
8
*
p_sys
->
fmt
.
video
.
i_width
*
p_sys
->
fmt
.
video
.
i_height
;
if
(
!
(
p_block
=
block_New
(
p_demux
,
i_size
)
)
)
{
msg_Warn
(
p_demux
,
"cannot get block"
);
return
0
;
}
memcpy
(
p_block
->
p_buffer
,
p_sys
->
p_buffer
,
i_size
);
return
p_block
;
}
}
#else
#else
static
block_t
*
Capture
(
demux_t
*
p_demux
)
static
block_t
*
Capture
(
demux_t
*
p_demux
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment