Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
87dee6df
Commit
87dee6df
authored
Sep 16, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify dynamicoverlay and removed the need of pf_make_region.
parent
00572bbb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
38 deletions
+17
-38
modules/video_filter/dynamicoverlay/dynamicoverlay.c
modules/video_filter/dynamicoverlay/dynamicoverlay.c
+17
-38
No files found.
modules/video_filter/dynamicoverlay/dynamicoverlay.c
View file @
87dee6df
...
...
@@ -345,54 +345,33 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
subpicture_region_t
**
pp_region
=
&
p_spu
->
p_region
;
while
(
(
p_overlay
=
ListWalk
(
&
p_sys
->
overlays
))
)
{
subpicture_region_t
*
p_region
;
*
pp_region
=
p_region
=
p_spu
->
pf_create_region
(
VLC_OBJECT
(
p_filter
),
&
p_overlay
->
format
);
if
(
!
p_region
)
break
;
msg_Dbg
(
p_filter
,
"Displaying overlay: %4.4s, %d, %d, %d"
,
(
char
*
)
&
p_overlay
->
format
.
i_chroma
,
p_overlay
->
i_x
,
p_overlay
->
i_y
,
p_overlay
->
i_alpha
);
if
(
p_overlay
->
format
.
i_chroma
==
VLC_FOURCC
(
'T'
,
'E'
,
'X'
,
'T'
)
)
{
*
pp_region
=
p_spu
->
pf_create_region
(
VLC_OBJECT
(
p_filter
),
&
p_overlay
->
format
);
if
(
!*
pp_region
)
break
;
(
*
pp_region
)
->
psz_text
=
strdup
(
p_overlay
->
data
.
p_text
);
(
*
pp_region
)
->
p_style
=
malloc
(
sizeof
(
struct
text_style_t
)
);
if
(
!
(
*
pp_region
)
->
p_style
)
{
p_spu
->
pf_destroy_region
(
VLC_OBJECT
(
p_filter
),
(
*
pp_region
)
);
*
pp_region
=
NULL
;
break
;
}
vlc_memcpy
(
(
*
pp_region
)
->
p_style
,
&
p_overlay
->
fontstyle
,
sizeof
(
struct
text_style_t
)
);
p_region
->
psz_text
=
strdup
(
p_overlay
->
data
.
p_text
);
p_region
->
p_style
=
malloc
(
sizeof
(
struct
text_style_t
)
);
if
(
p_region
->
p_style
)
*
p_region
->
p_style
=
p_overlay
->
fontstyle
;
}
else
{
picture_t
clone
;
if
(
vout_AllocatePicture
(
p_filter
,
&
clone
,
p_overlay
->
format
.
i_chroma
,
p_overlay
->
format
.
i_width
,
p_overlay
->
format
.
i_height
,
p_overlay
->
format
.
i_aspect
)
)
{
msg_Err
(
p_filter
,
"cannot allocate picture"
);
continue
;
}
vout_CopyPicture
(
p_filter
,
&
clone
,
p_overlay
->
data
.
p_pic
);
*
pp_region
=
p_spu
->
pf_make_region
(
VLC_OBJECT
(
p_filter
),
&
p_overlay
->
format
,
&
clone
);
if
(
!*
pp_region
)
{
msg_Err
(
p_filter
,
"cannot allocate subpicture region"
);
continue
;
}
vout_CopyPicture
(
p_filter
,
&
p_region
->
picture
,
p_overlay
->
data
.
p_pic
);
}
(
*
pp_region
)
->
i_x
=
p_overlay
->
i_x
;
(
*
pp_region
)
->
i_y
=
p_overlay
->
i_y
;
(
*
pp_region
)
->
i_align
=
OSD_ALIGN_LEFT
|
OSD_ALIGN_TOP
;
(
*
pp_region
)
->
i_alpha
=
p_overlay
->
i_alpha
;
pp_region
=
&
(
*
pp_region
)
->
p_next
;
p_region
->
i_x
=
p_overlay
->
i_x
;
p_region
->
i_y
=
p_overlay
->
i_y
;
p_region
->
i_align
=
OSD_ALIGN_LEFT
|
OSD_ALIGN_TOP
;
p_region
->
i_alpha
=
p_overlay
->
i_alpha
;
pp_region
=
&
p_region
->
p_next
;
}
p_sys
->
b_updated
=
false
;
...
...
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