1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

fftools/ffmpeg_mux_init: remove a redundant check

This commit is contained in:
Anton Khirnov
2023-04-10 21:42:48 +02:00
parent 12f3f41bbf
commit a0452ee837

View File

@@ -917,7 +917,6 @@ static int streamcopy_init(const Muxer *mux, const OptionsContext *o,
}
}
if (ist->st->nb_side_data) {
for (int i = 0; i < ist->st->nb_side_data; i++) {
const AVPacketSideData *sd_src = &ist->st->side_data[i];
uint8_t *dst_data;
@@ -929,7 +928,6 @@ static int streamcopy_init(const Muxer *mux, const OptionsContext *o,
}
memcpy(dst_data, sd_src->data, sd_src->size);
}
}
#if FFMPEG_ROTATION_METADATA
if (ost->rotate_overridden) {