Skip to content
Snippets Groups Projects
Commit bc2fe362 authored by Paul B Mahol's avatar Paul B Mahol
Browse files

avcodec/noise_bsf: set correct size of .priv_data_size field


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