Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
a6dee1e4
Commit
a6dee1e4
authored
Mar 11, 2013
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
omxil_vout: Set broadcom specific parameters
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
b4c66102
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
modules/codec/omxil/vout.c
modules/codec/omxil/vout.c
+18
-0
No files found.
modules/codec/omxil/vout.c
View file @
a6dee1e4
...
@@ -31,6 +31,10 @@
...
@@ -31,6 +31,10 @@
#include "omxil.h"
#include "omxil.h"
#include "omxil_core.h"
#include "omxil_core.h"
#include "OMX_Broadcom.h"
// Defined in the broadcom version of OMX_Index.h
#define OMX_IndexConfigDisplayRegion 0x7f000010
/*****************************************************************************
/*****************************************************************************
* Module descriptor
* Module descriptor
...
@@ -233,6 +237,20 @@ static int Open(vlc_object_t *p_this)
...
@@ -233,6 +237,20 @@ static int Open(vlc_object_t *p_this)
CHECK_ERROR
(
omx_error
,
"Wait for Executing failed (%x: %s)"
,
CHECK_ERROR
(
omx_error
,
"Wait for Executing failed (%x: %s)"
,
omx_error
,
ErrorToString
(
omx_error
));
omx_error
,
ErrorToString
(
omx_error
));
if
(
!
strcmp
(
p_sys
->
psz_component
,
"OMX.broadcom.video_render"
))
{
OMX_CONFIG_DISPLAYREGIONTYPE
config_display
;
OMX_INIT_STRUCTURE
(
config_display
);
config_display
.
nPortIndex
=
p_sys
->
port
.
i_port_index
;
config_display
.
set
=
OMX_DISPLAY_SET_SRC_RECT
;
config_display
.
src_rect
.
width
=
vd
->
cfg
->
display
.
width
;
config_display
.
src_rect
.
height
=
vd
->
cfg
->
display
.
height
;
OMX_SetConfig
(
p_sys
->
omx_handle
,
OMX_IndexConfigDisplayRegion
,
&
config_display
);
config_display
.
set
=
OMX_DISPLAY_SET_FULLSCREEN
;
config_display
.
fullscreen
=
OMX_TRUE
;
OMX_SetConfig
(
p_sys
->
omx_handle
,
OMX_IndexConfigDisplayRegion
,
&
config_display
);
}
/* Setup chroma */
/* Setup chroma */
video_format_t
fmt
=
vd
->
fmt
;
video_format_t
fmt
=
vd
->
fmt
;
...
...
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