Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
58396e80
Commit
58396e80
authored
Aug 27, 2014
by
Luca Barbato
Committed by
Diego Biurrun
Aug 28, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x11grab: Use a typedef for the context, as most other code does
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
7bb505a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
x11grab.c
libavdevice/x11grab.c
+10
-10
No files found.
libavdevice/x11grab.c
View file @
58396e80
...
...
@@ -60,7 +60,7 @@
#include "libavformat/internal.h"
/** X11 device demuxer context */
struct
x11grab
{
typedef
struct
X11GrabContext
{
const
AVClass
*
class
;
/**< Class for private options. */
int
frame_size
;
/**< Size in bytes of a grabbed frame */
AVRational
time_base
;
/**< Time base */
...
...
@@ -82,7 +82,7 @@ struct x11grab {
char
*
framerate
;
/**< Set by a private option. */
Window
region_win
;
/**< This is used by show_region option. */
};
}
X11GrabContext
;
#define REGION_WIN_BORDER 3
...
...
@@ -91,7 +91,7 @@ struct x11grab {
*
* @param s x11grab context
*/
static
void
x11grab_draw_region_win
(
struct
x11grab
*
s
)
static
void
x11grab_draw_region_win
(
X11GrabContext
*
s
)
{
Display
*
dpy
=
s
->
dpy
;
Window
win
=
s
->
region_win
;
...
...
@@ -112,7 +112,7 @@ static void x11grab_draw_region_win(struct x11grab *s)
*
* @param s x11grab context
*/
static
void
x11grab_region_win_init
(
struct
x11grab
*
s
)
static
void
x11grab_region_win_init
(
X11GrabContext
*
s
)
{
Display
*
dpy
=
s
->
dpy
;
XRectangle
rect
;
...
...
@@ -151,7 +151,7 @@ static void x11grab_region_win_init(struct x11grab *s)
*/
static
int
x11grab_read_header
(
AVFormatContext
*
s1
)
{
struct
x11grab
*
x11grab
=
s1
->
priv_data
;
X11GrabContext
*
x11grab
=
s1
->
priv_data
;
Display
*
dpy
;
AVStream
*
st
=
NULL
;
enum
AVPixelFormat
input_pixfmt
;
...
...
@@ -345,7 +345,7 @@ out:
* @param s context used to retrieve original grabbing rectangle
* coordinates
*/
static
void
paint_mouse_pointer
(
XImage
*
image
,
struct
x11grab
*
s
)
static
void
paint_mouse_pointer
(
XImage
*
image
,
X11GrabContext
*
s
)
{
int
x_off
=
s
->
x_off
;
int
y_off
=
s
->
y_off
;
...
...
@@ -455,7 +455,7 @@ static int xget_zpixmap(Display *dpy, Drawable d, XImage *image, int x, int y)
*/
static
int
x11grab_read_packet
(
AVFormatContext
*
s1
,
AVPacket
*
pkt
)
{
struct
x11grab
*
s
=
s1
->
priv_data
;
X11GrabContext
*
s
=
s1
->
priv_data
;
Display
*
dpy
=
s
->
dpy
;
XImage
*
image
=
s
->
image
;
int
x_off
=
s
->
x_off
;
...
...
@@ -560,7 +560,7 @@ static int x11grab_read_packet(AVFormatContext *s1, AVPacket *pkt)
*/
static
int
x11grab_read_close
(
AVFormatContext
*
s1
)
{
struct
x11grab
*
x11grab
=
s1
->
priv_data
;
X11GrabContext
*
x11grab
=
s1
->
priv_data
;
/* Detach cleanly from shared mem */
if
(
x11grab
->
use_shm
)
{
...
...
@@ -583,7 +583,7 @@ static int x11grab_read_close(AVFormatContext *s1)
return
0
;
}
#define OFFSET(x) offsetof(
struct x11grab
, x)
#define OFFSET(x) offsetof(
X11GrabContext
, x)
#define DEC AV_OPT_FLAG_DECODING_PARAM
static
const
AVOption
options
[]
=
{
{
"video_size"
,
"A string describing frame size, such as 640x480 or hd720."
,
OFFSET
(
video_size
),
AV_OPT_TYPE_STRING
,
{.
str
=
"vga"
},
0
,
0
,
DEC
},
...
...
@@ -607,7 +607,7 @@ static const AVClass x11_class = {
AVInputFormat
ff_x11grab_demuxer
=
{
.
name
=
"x11grab"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"X11grab"
),
.
priv_data_size
=
sizeof
(
struct
x11grab
),
.
priv_data_size
=
sizeof
(
X11GrabContext
),
.
read_header
=
x11grab_read_header
,
.
read_packet
=
x11grab_read_packet
,
.
read_close
=
x11grab_read_close
,
...
...
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