Commit 6b1c4ce8 authored by Artyom Lebedev's avatar Artyom Lebedev Committed by Peter Ross

Fix bug in mpegts muxer which affects KLV async stream generation.

Fixes ticket #7597.
Signed-off-by: 's avatarPeter Ross <pross@xvid.org>
parent cc6208cd
......@@ -1523,7 +1523,7 @@ static int mpegts_write_packet_internal(AVFormatContext *s, AVPacket *pkt)
int64_t dts = pkt->dts, pts = pkt->pts;
int opus_samples = 0;
int side_data_size;
char *side_data = NULL;
uint8_t *side_data = NULL;
int stream_id = -1;
side_data = av_packet_get_side_data(pkt,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment