1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

daala: fix encoder_options initialization

Regression from f710e40646
This commit is contained in:
Tristan Matthews 2022-04-25 21:43:08 -04:00 committed by Jean-Baptiste Kempf
parent a0b9f7d746
commit ec4f3c10b7

View File

@ -717,7 +717,7 @@ static int OpenEncoder( vlc_object_t *p_this )
static const struct vlc_encoder_operations ops =
{
.close = CloseEncoder,
.encoder_video = Encode,
.encode_video = Encode,
};
p_enc->ops = &ops;