mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/noise_bsf: set correct size of .priv_data_size field
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
3187277ebb
commit
bc2fe36228
|
@ -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,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue