mirror of https://git.ffmpeg.org/ffmpeg.git
fftools/ffmpeg: remove OutputStream.sync_ist
It is not actually used for anything.
This commit is contained in:
parent
8e092c3eac
commit
49123dd058
|
@ -3409,10 +3409,6 @@ static int transcode_init(void)
|
|||
input_streams[ost->source_index]->st->index,
|
||||
ost->file_index,
|
||||
ost->index);
|
||||
if (ost->sync_ist != input_streams[ost->source_index])
|
||||
av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
|
||||
ost->sync_ist->file_index,
|
||||
ost->sync_ist->st->index);
|
||||
if (ost->enc_ctx) {
|
||||
const AVCodec *in_codec = input_streams[ost->source_index]->dec;
|
||||
const AVCodec *out_codec = ost->enc;
|
||||
|
|
|
@ -468,7 +468,6 @@ typedef struct OutputStream {
|
|||
int64_t vsync_frame_number;
|
||||
/* input pts and corresponding output pts
|
||||
for A/V sync */
|
||||
struct InputStream *sync_ist; /* input stream to sync against */
|
||||
int64_t sync_opts; /* output frame counter, could be changed to some true timestamp */ // FIXME look at frame_number
|
||||
/* pts of the first frame encoded for this stream, used for limiting
|
||||
* recording time */
|
||||
|
|
|
@ -1757,7 +1757,6 @@ static OutputStream *new_output_stream(OptionsContext *o, AVFormatContext *oc, e
|
|||
|
||||
ost->source_index = source_index;
|
||||
if (source_index >= 0) {
|
||||
ost->sync_ist = input_streams[source_index];
|
||||
input_streams[source_index]->discard = 0;
|
||||
input_streams[source_index]->st->discard = input_streams[source_index]->user_set_discard;
|
||||
}
|
||||
|
@ -2650,7 +2649,6 @@ static void map_manual(OutputFile *of, AVFormatContext *oc,
|
|||
OptionsContext *o, const StreamMap *map)
|
||||
{
|
||||
InputStream *ist;
|
||||
OutputStream *ost;
|
||||
|
||||
if (map->disabled)
|
||||
return;
|
||||
|
@ -2695,16 +2693,15 @@ loop_end:
|
|||
if(o-> data_disable && ist->st->codecpar->codec_type == AVMEDIA_TYPE_DATA)
|
||||
return;
|
||||
|
||||
ost = NULL;
|
||||
switch (ist->st->codecpar->codec_type) {
|
||||
case AVMEDIA_TYPE_VIDEO: ost = new_video_stream (o, oc, src_idx); break;
|
||||
case AVMEDIA_TYPE_AUDIO: ost = new_audio_stream (o, oc, src_idx); break;
|
||||
case AVMEDIA_TYPE_SUBTITLE: ost = new_subtitle_stream (o, oc, src_idx); break;
|
||||
case AVMEDIA_TYPE_DATA: ost = new_data_stream (o, oc, src_idx); break;
|
||||
case AVMEDIA_TYPE_ATTACHMENT: ost = new_attachment_stream(o, oc, src_idx); break;
|
||||
case AVMEDIA_TYPE_VIDEO: new_video_stream (o, oc, src_idx); break;
|
||||
case AVMEDIA_TYPE_AUDIO: new_audio_stream (o, oc, src_idx); break;
|
||||
case AVMEDIA_TYPE_SUBTITLE: new_subtitle_stream (o, oc, src_idx); break;
|
||||
case AVMEDIA_TYPE_DATA: new_data_stream (o, oc, src_idx); break;
|
||||
case AVMEDIA_TYPE_ATTACHMENT: new_attachment_stream(o, oc, src_idx); break;
|
||||
case AVMEDIA_TYPE_UNKNOWN:
|
||||
if (copy_unknown_streams) {
|
||||
ost = new_unknown_stream (o, oc, src_idx);
|
||||
new_unknown_stream (o, oc, src_idx);
|
||||
break;
|
||||
}
|
||||
default:
|
||||
|
@ -2719,9 +2716,6 @@ loop_end:
|
|||
exit_program(1);
|
||||
}
|
||||
}
|
||||
if (ost)
|
||||
ost->sync_ist = input_streams[ input_files[map->sync_file_index]->ist_index
|
||||
+ map->sync_stream_index];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue