mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avfilter/af_stereotools: add timeline support
This commit is contained in:
parent
456146356a
commit
eebf19ccd8
@ -327,8 +327,13 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
||||
L *= level_out;
|
||||
R *= level_out;
|
||||
|
||||
dst[0] = L;
|
||||
dst[1] = R;
|
||||
if (ctx->is_disabled) {
|
||||
dst[0] = src[0];
|
||||
dst[1] = src[1];
|
||||
} else {
|
||||
dst[0] = L;
|
||||
dst[1] = R;
|
||||
}
|
||||
}
|
||||
|
||||
if (out != in)
|
||||
@ -370,4 +375,5 @@ AVFilter ff_af_stereotools = {
|
||||
.uninit = uninit,
|
||||
.inputs = inputs,
|
||||
.outputs = outputs,
|
||||
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user