Commit bc2fe362 authored by Paul B Mahol's avatar Paul B Mahol

avcodec/noise_bsf: set correct size of .priv_data_size field

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 3187277e
......@@ -85,7 +85,7 @@ static const AVClass noise_class = {
const AVBitStreamFilter ff_noise_bsf = {
.name = "noise",
.priv_data_size = sizeof(int),
.priv_data_size = sizeof(NoiseContext),
.priv_class = &noise_class,
.filter = noise,
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment