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
54d212fa
Commit
54d212fa
authored
Mar 19, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
svg: remove unused variable.
parent
f957d62e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
8 deletions
+7
-8
modules/misc/svg.c
modules/misc/svg.c
+7
-8
No files found.
modules/misc/svg.c
View file @
54d212fa
...
...
@@ -72,7 +72,7 @@ static char *svg_GetTemplate( vlc_object_t *p_this );
"for automatic string conversion" )
vlc_module_begin
()
set_category
(
CAT_INPUT
)
set_category
(
CAT_INPUT
)
set_category
(
SUBCAT_INPUT_SCODEC
)
set_capability
(
"text renderer"
,
99
)
add_shortcut
(
"svg"
)
...
...
@@ -115,7 +115,6 @@ struct filter_sys_t
/* Default size for rendering. Initialized to the output size. */
int
i_width
;
int
i_height
;
vlc_mutex_t
*
lock
;
};
/*****************************************************************************
...
...
@@ -445,7 +444,7 @@ static int RenderText( filter_t *p_filter, subpicture_region_t *p_region_out,
psz_string
=
p_region_in
->
psz_text
;
if
(
!
psz_string
||
!*
psz_string
)
return
VLC_EGENERIC
;
p_svg
=
(
svg_rendition_t
*
)
malloc
(
sizeof
(
svg_rendition_t
)
);
p_svg
=
malloc
(
sizeof
(
svg_rendition_t
)
);
if
(
!
p_svg
)
return
VLC_ENOMEM
;
...
...
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