Explicitly initialize decoder sink_count

The zero-initialization relied on the fact that the decoder instance is
static.
This commit is contained in:
Romain Vimont 2021-05-28 21:23:10 +02:00
parent 4c31911df2
commit 6fd7e89da1

View file

@ -140,6 +140,8 @@ decoder_packet_sink_push(struct sc_packet_sink *sink, const AVPacket *packet) {
void
decoder_init(struct decoder *decoder) {
decoder->sink_count = 0;
static const struct sc_packet_sink_ops ops = {
.open = decoder_packet_sink_open,
.close = decoder_packet_sink_close,