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
fae2f3f2
Commit
fae2f3f2
authored
Jun 29, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use ChromaCreate/Destroy when applicable.
parent
71c1ddb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
24 deletions
+15
-24
src/video_output/video_output.c
src/video_output/video_output.c
+15
-24
No files found.
src/video_output/video_output.c
View file @
fae2f3f2
...
...
@@ -1083,22 +1083,11 @@ static void RunThread( vout_thread_t *p_vout)
* resizing too and it's not sure that we already had it,
* recreate the chroma plugin chain from scratch. */
/* dionoea */
if
(
p_vout
->
p_chroma
->
p_module
)
if
(
!
p_vout
->
b_direct
)
{
filter_t
*
p_chroma
=
p_vout
->
p_chroma
;
module_Unneed
(
p_chroma
,
p_chroma
->
p_module
);
p_chroma
->
fmt_out
.
video
=
p_vout
->
fmt_out
;
p_chroma
->
fmt_out
.
video
.
i_rmask
=
p_vout
->
output
.
i_rmask
;
p_chroma
->
fmt_out
.
video
.
i_gmask
=
p_vout
->
output
.
i_gmask
;
p_chroma
->
fmt_out
.
video
.
i_bmask
=
p_vout
->
output
.
i_bmask
;
p_chroma
->
fmt_out
.
video
.
i_rrshift
=
p_vout
->
output
.
i_rrshift
;
p_chroma
->
fmt_out
.
video
.
i_lrshift
=
p_vout
->
output
.
i_lrshift
;
p_chroma
->
fmt_out
.
video
.
i_rgshift
=
p_vout
->
output
.
i_rgshift
;
p_chroma
->
fmt_out
.
video
.
i_lgshift
=
p_vout
->
output
.
i_lgshift
;
p_chroma
->
fmt_out
.
video
.
i_rbshift
=
p_vout
->
output
.
i_rbshift
;
p_chroma
->
fmt_out
.
video
.
i_lbshift
=
p_vout
->
output
.
i_lbshift
;
p_chroma
->
p_module
=
module_Need
(
p_chroma
,
"video filter2"
,
NULL
,
0
);
if
(
!
p_chroma
->
p_module
)
ChromaDestroy
(
p_vout
);
if
(
ChromaCreate
(
p_vout
)
)
{
msg_Err
(
p_vout
,
"WOW THIS SUCKS BIG TIME!!!!!"
);
}
...
...
@@ -1115,12 +1104,7 @@ static void RunThread( vout_thread_t *p_vout)
p_vout
->
i_changes
&=
~
VOUT_PICTURE_BUFFERS_CHANGE
;
if
(
!
p_vout
->
b_direct
)
{
module_Unneed
(
p_vout
->
p_chroma
,
p_vout
->
p_chroma
->
p_module
);
vlc_object_detach
(
p_vout
->
p_chroma
);
vlc_object_release
(
p_vout
->
p_chroma
);
p_vout
->
p_chroma
=
NULL
;
}
ChromaDestroy
(
p_vout
);
vlc_mutex_lock
(
&
p_vout
->
picture_lock
);
...
...
@@ -1251,9 +1235,12 @@ static int ChromaCreate( vout_thread_t *p_vout )
if
(
p_chroma
->
p_module
==
NULL
)
{
msg_Err
(
p_vout
,
"no chroma module for %4.4s to %4.4s"
,
msg_Err
(
p_vout
,
"no chroma module for %4.4s to %4.4s
i=%dx%d o=%dx%d
"
,
(
char
*
)
&
p_vout
->
render
.
i_chroma
,
(
char
*
)
&
p_vout
->
output
.
i_chroma
);
(
char
*
)
&
p_vout
->
output
.
i_chroma
,
p_chroma
->
fmt_in
.
video
.
i_width
,
p_chroma
->
fmt_in
.
video
.
i_height
,
p_chroma
->
fmt_out
.
video
.
i_width
,
p_chroma
->
fmt_out
.
video
.
i_height
);
vlc_object_release
(
p_vout
->
p_chroma
);
p_vout
->
p_chroma
=
NULL
;
...
...
@@ -1262,9 +1249,13 @@ static int ChromaCreate( vout_thread_t *p_vout )
p_chroma
->
pf_vout_buffer_new
=
ChromaGetPicture
;
return
VLC_SUCCESS
;
}
static
void
ChromaDestroy
(
vout_thread_t
*
p_vout
)
{
assert
(
!
p_vout
->
b_direct
&&
p_vout
->
p_chroma
);
assert
(
!
p_vout
->
b_direct
);
if
(
!
p_vout
->
p_chroma
)
return
;
module_Unneed
(
p_vout
->
p_chroma
,
p_vout
->
p_chroma
->
p_module
);
vlc_object_release
(
p_vout
->
p_chroma
);
...
...
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