You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
fftools/ffmpeg_mux_init: remove a redundant check
This commit is contained in:
@@ -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++) {
|
for (int i = 0; i < ist->st->nb_side_data; i++) {
|
||||||
const AVPacketSideData *sd_src = &ist->st->side_data[i];
|
const AVPacketSideData *sd_src = &ist->st->side_data[i];
|
||||||
uint8_t *dst_data;
|
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);
|
memcpy(dst_data, sd_src->data, sd_src->size);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
#if FFMPEG_ROTATION_METADATA
|
#if FFMPEG_ROTATION_METADATA
|
||||||
if (ost->rotate_overridden) {
|
if (ost->rotate_overridden) {
|
||||||
|
Reference in New Issue
Block a user