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
fdca977a
Commit
fdca977a
authored
Mar 10, 2013
by
dronus
Committed by
Michael Niedermayer
Mar 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libavdevice sdl: added window_fullscreen option to switch SDL output into fullscreen mode
parent
58bc6595
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
sdl.c
libavdevice/sdl.c
+4
-1
No files found.
libavdevice/sdl.c
View file @
fdca977a
...
@@ -37,6 +37,7 @@ typedef struct {
...
@@ -37,6 +37,7 @@ typedef struct {
char
*
window_title
;
char
*
window_title
;
char
*
icon_title
;
char
*
icon_title
;
int
window_width
,
window_height
;
/**< size of the window */
int
window_width
,
window_height
;
/**< size of the window */
int
window_fullscreen
;
int
overlay_width
,
overlay_height
;
/**< size of the video in the window */
int
overlay_width
,
overlay_height
;
/**< size of the video in the window */
int
overlay_x
,
overlay_y
;
int
overlay_x
,
overlay_y
;
int
overlay_fmt
;
int
overlay_fmt
;
...
@@ -76,6 +77,7 @@ static int sdl_write_header(AVFormatContext *s)
...
@@ -76,6 +77,7 @@ static int sdl_write_header(AVFormatContext *s)
AVCodecContext
*
encctx
=
st
->
codec
;
AVCodecContext
*
encctx
=
st
->
codec
;
AVRational
sar
,
dar
;
/* sample and display aspect ratios */
AVRational
sar
,
dar
;
/* sample and display aspect ratios */
int
i
,
ret
;
int
i
,
ret
;
int
flags
=
SDL_SWSURFACE
|
sdl
->
window_fullscreen
?
SDL_FULLSCREEN
:
0
;
if
(
!
sdl
->
window_title
)
if
(
!
sdl
->
window_title
)
sdl
->
window_title
=
av_strdup
(
s
->
filename
);
sdl
->
window_title
=
av_strdup
(
s
->
filename
);
...
@@ -151,7 +153,7 @@ static int sdl_write_header(AVFormatContext *s)
...
@@ -151,7 +153,7 @@ static int sdl_write_header(AVFormatContext *s)
SDL_WM_SetCaption
(
sdl
->
window_title
,
sdl
->
icon_title
);
SDL_WM_SetCaption
(
sdl
->
window_title
,
sdl
->
icon_title
);
sdl
->
surface
=
SDL_SetVideoMode
(
sdl
->
window_width
,
sdl
->
window_height
,
sdl
->
surface
=
SDL_SetVideoMode
(
sdl
->
window_width
,
sdl
->
window_height
,
24
,
SDL_SWSURFACE
);
24
,
flags
);
if
(
!
sdl
->
surface
)
{
if
(
!
sdl
->
surface
)
{
av_log
(
s
,
AV_LOG_ERROR
,
"Unable to set video mode: %s
\n
"
,
SDL_GetError
());
av_log
(
s
,
AV_LOG_ERROR
,
"Unable to set video mode: %s
\n
"
,
SDL_GetError
());
ret
=
AVERROR
(
EINVAL
);
ret
=
AVERROR
(
EINVAL
);
...
@@ -209,6 +211,7 @@ static const AVOption options[] = {
...
@@ -209,6 +211,7 @@ static const AVOption options[] = {
{
"window_title"
,
"set SDL window title"
,
OFFSET
(
window_title
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
AV_OPT_FLAG_ENCODING_PARAM
},
{
"window_title"
,
"set SDL window title"
,
OFFSET
(
window_title
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
AV_OPT_FLAG_ENCODING_PARAM
},
{
"icon_title"
,
"set SDL iconified window title"
,
OFFSET
(
icon_title
)
,
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
AV_OPT_FLAG_ENCODING_PARAM
},
{
"icon_title"
,
"set SDL iconified window title"
,
OFFSET
(
icon_title
)
,
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
AV_OPT_FLAG_ENCODING_PARAM
},
{
"window_size"
,
"set SDL window forced size"
,
OFFSET
(
window_width
),
AV_OPT_TYPE_IMAGE_SIZE
,{.
str
=
NULL
},
0
,
0
,
AV_OPT_FLAG_ENCODING_PARAM
},
{
"window_size"
,
"set SDL window forced size"
,
OFFSET
(
window_width
),
AV_OPT_TYPE_IMAGE_SIZE
,{.
str
=
NULL
},
0
,
0
,
AV_OPT_FLAG_ENCODING_PARAM
},
{
"window_fullscreen"
,
"set SDL window fullscreen"
,
OFFSET
(
window_fullscreen
),
AV_OPT_TYPE_INT
,{.
i64
=
0
},
INT_MIN
,
INT_MAX
,
AV_OPT_FLAG_ENCODING_PARAM
},
{
NULL
},
{
NULL
},
};
};
...
...
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