git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
43c7c7c
)
Do not use return with argument for a function "returning" void.
author
Reimar Döffinger
<Reimar.Doeffinger@gmx.de>
Sun, 13 May 2007 16:26:16 +0000
(16:26 +0000)
committer
Reimar Döffinger
<Reimar.Doeffinger@gmx.de>
Sun, 13 May 2007 16:26:16 +0000
(16:26 +0000)
Originally committed as revision 9016 to svn://svn.ffmpeg.org/ffmpeg/trunk
vhook/watermark.c
patch
|
blob
|
history
diff --git
a/vhook/watermark.c
b/vhook/watermark.c
index
aa6fee6
..
3d8313a
100644
(file)
--- a/
vhook/watermark.c
+++ b/
vhook/watermark.c
@@
-435,9
+435,9
@@
void Process(void *ctx,
{
ContextInfo *ci = (ContextInfo *) ctx;
if (1 == ci->mode) {
-
return
Process1(ctx, picture, pix_fmt, src_width, src_height, pts);
+ Process1(ctx, picture, pix_fmt, src_width, src_height, pts);
} else {
-
return
Process0(ctx, picture, pix_fmt, src_width, src_height, pts);
+ Process0(ctx, picture, pix_fmt, src_width, src_height, pts);
}
}