Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
activate (ctx) {
ctx.abuf = consume(input_a)
ctx.vbuf = consume(input_v)
if (!ctx.abuf)
ff_filter_frame(output_a, ctx.abuf)
ctx.abuf = null
return
if (!ctx.vbuf)
ff_filter_frame(output_v, ctx.vbuf)
ctx.vbuf = null
return
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment