You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
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:
@@ -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,
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user