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:
Paul B Mahol 2016-05-01 22:23:48 +02:00
parent 3187277ebb
commit bc2fe36228
1 changed files with 1 additions and 1 deletions

View File

@ -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,
};