Commit 31f9c228 authored by Michael Niedermayer's avatar Michael Niedermayer

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

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f30a8154
...@@ -3433,7 +3433,7 @@ static int process_input(int file_index) ...@@ -3433,7 +3433,7 @@ static int process_input(int file_index)
} }
/* add the stream-global side data to the first packet */ /* 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) if (ist->st->nb_side_data)
av_packet_split_side_data(&pkt); av_packet_split_side_data(&pkt);
for (i = 0; i < ist->st->nb_side_data; i++) { for (i = 0; i < ist->st->nb_side_data; i++) {
...@@ -3449,6 +3449,7 @@ static int process_input(int file_index) ...@@ -3449,6 +3449,7 @@ static int process_input(int file_index)
memcpy(dst_data, src_sd->data, src_sd->size); memcpy(dst_data, src_sd->data, src_sd->size);
} }
}
if (pkt.dts != AV_NOPTS_VALUE) if (pkt.dts != AV_NOPTS_VALUE)
pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base); pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
......
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