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
3bb4d26a
Commit
3bb4d26a
authored
Jun 22, 2014
by
Andrey Utkin
Committed by
Michael Niedermayer
Jun 22, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drawtext: drop unused draw_glyphs() arg "rgbcolor"
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
99497b46
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
vf_drawtext.c
libavfilter/vf_drawtext.c
+4
-4
No files found.
libavfilter/vf_drawtext.c
View file @
3bb4d26a
...
@@ -911,7 +911,7 @@ static int expand_text(AVFilterContext *ctx)
...
@@ -911,7 +911,7 @@ static int expand_text(AVFilterContext *ctx)
}
}
static
int
draw_glyphs
(
DrawTextContext
*
s
,
AVFrame
*
frame
,
static
int
draw_glyphs
(
DrawTextContext
*
s
,
AVFrame
*
frame
,
int
width
,
int
height
,
const
uint8_t
rgbcolor
[
4
],
int
width
,
int
height
,
FFDrawColor
*
color
,
int
x
,
int
y
,
int
borderw
)
FFDrawColor
*
color
,
int
x
,
int
y
,
int
borderw
)
{
{
char
*
text
=
s
->
expanded_text
.
str
;
char
*
text
=
s
->
expanded_text
.
str
;
...
@@ -1105,17 +1105,17 @@ static int draw_text(AVFilterContext *ctx, AVFrame *frame,
...
@@ -1105,17 +1105,17 @@ static int draw_text(AVFilterContext *ctx, AVFrame *frame,
s
->
x
,
s
->
y
,
box_w
,
box_h
);
s
->
x
,
s
->
y
,
box_w
,
box_h
);
if
(
s
->
shadowx
||
s
->
shadowy
)
{
if
(
s
->
shadowx
||
s
->
shadowy
)
{
if
((
ret
=
draw_glyphs
(
s
,
frame
,
width
,
height
,
s
->
shadowcolor
.
rgba
,
if
((
ret
=
draw_glyphs
(
s
,
frame
,
width
,
height
,
&
s
->
shadowcolor
,
s
->
shadowx
,
s
->
shadowy
,
0
))
<
0
)
&
s
->
shadowcolor
,
s
->
shadowx
,
s
->
shadowy
,
0
))
<
0
)
return
ret
;
return
ret
;
}
}
if
(
s
->
borderw
)
{
if
(
s
->
borderw
)
{
if
((
ret
=
draw_glyphs
(
s
,
frame
,
width
,
height
,
s
->
bordercolor
.
rgba
,
if
((
ret
=
draw_glyphs
(
s
,
frame
,
width
,
height
,
&
s
->
bordercolor
,
0
,
0
,
s
->
borderw
))
<
0
)
&
s
->
bordercolor
,
0
,
0
,
s
->
borderw
))
<
0
)
return
ret
;
return
ret
;
}
}
if
((
ret
=
draw_glyphs
(
s
,
frame
,
width
,
height
,
s
->
fontcolor
.
rgba
,
if
((
ret
=
draw_glyphs
(
s
,
frame
,
width
,
height
,
&
s
->
fontcolor
,
0
,
0
,
0
))
<
0
)
&
s
->
fontcolor
,
0
,
0
,
0
))
<
0
)
return
ret
;
return
ret
;
...
...
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