mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-25 16:21:13 +00:00
Do not use return with argument for a function "returning" void.
Originally committed as revision 9016 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
43c7c7c7cf
commit
3a136a06fd
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user