1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-08 08:55:34 +02:00

ffmpeg: Fix missing {} in Stream to Packet side data code

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-08-28 23:34:20 +02:00
parent f30a8154ab
commit 31f9c228c0

View File

@ -3433,7 +3433,7 @@ static int process_input(int file_index)
}
/* add the stream-global side data to the first packet */
if (ist->nb_packets == 1)
if (ist->nb_packets == 1) {
if (ist->st->nb_side_data)
av_packet_split_side_data(&pkt);
for (i = 0; i < ist->st->nb_side_data; i++) {
@ -3449,6 +3449,7 @@ static int process_input(int file_index)
memcpy(dst_data, src_sd->data, src_sd->size);
}
}
if (pkt.dts != AV_NOPTS_VALUE)
pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);