mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
avconv: rescue poor abused start_time global.
Keep a per-OutputFile instance of it, thus making -ss work with multiple output files.
This commit is contained in:
parent
ef44a60710
commit
ea065176b2
16
avconv.c
16
avconv.c
@ -306,6 +306,7 @@ typedef struct OutputFile {
|
|||||||
AVDictionary *opts;
|
AVDictionary *opts;
|
||||||
int ost_index; /* index of the first stream in output_streams */
|
int ost_index; /* index of the first stream in output_streams */
|
||||||
int64_t recording_time; /* desired length of the resulting file in microseconds */
|
int64_t recording_time; /* desired length of the resulting file in microseconds */
|
||||||
|
int64_t start_time; /* start time in microseconds */
|
||||||
} OutputFile;
|
} OutputFile;
|
||||||
|
|
||||||
static InputStream *input_streams = NULL;
|
static InputStream *input_streams = NULL;
|
||||||
@ -644,7 +645,8 @@ static double
|
|||||||
get_sync_ipts(const OutputStream *ost)
|
get_sync_ipts(const OutputStream *ost)
|
||||||
{
|
{
|
||||||
const InputStream *ist = ost->sync_ist;
|
const InputStream *ist = ost->sync_ist;
|
||||||
return (double)(ist->pts - start_time)/AV_TIME_BASE;
|
OutputFile *of = &output_files[ost->file_index];
|
||||||
|
return (double)(ist->pts - of->start_time)/AV_TIME_BASE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void write_frame(AVFormatContext *s, AVPacket *pkt, AVCodecContext *avctx, AVBitStreamFilterContext *bsfc){
|
static void write_frame(AVFormatContext *s, AVPacket *pkt, AVCodecContext *avctx, AVBitStreamFilterContext *bsfc){
|
||||||
@ -1576,8 +1578,7 @@ static int output_packet(InputStream *ist, int ist_index,
|
|||||||
}
|
}
|
||||||
/* if output time reached then transcode raw format,
|
/* if output time reached then transcode raw format,
|
||||||
encode packets and output them */
|
encode packets and output them */
|
||||||
if (start_time == 0 || ist->pts >= start_time)
|
for (i = 0; i < nb_ostreams; i++) {
|
||||||
for(i=0;i<nb_ostreams;i++) {
|
|
||||||
OutputFile *of = &output_files[ost_table[i].file_index];
|
OutputFile *of = &output_files[ost_table[i].file_index];
|
||||||
int frame_size;
|
int frame_size;
|
||||||
|
|
||||||
@ -1585,8 +1586,11 @@ static int output_packet(InputStream *ist, int ist_index,
|
|||||||
if (ost->source_index != ist_index)
|
if (ost->source_index != ist_index)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if (of->start_time && ist->pts < of->start_time)
|
||||||
|
continue;
|
||||||
|
|
||||||
if (of->recording_time != INT64_MAX &&
|
if (of->recording_time != INT64_MAX &&
|
||||||
av_compare_ts(ist->pts, AV_TIME_BASE_Q, of->recording_time + start_time,
|
av_compare_ts(ist->pts, AV_TIME_BASE_Q, of->recording_time + of->start_time,
|
||||||
(AVRational){1, 1000000}) >= 0) {
|
(AVRational){1, 1000000}) >= 0) {
|
||||||
ost->is_past_recording_time = 1;
|
ost->is_past_recording_time = 1;
|
||||||
continue;
|
continue;
|
||||||
@ -1642,7 +1646,7 @@ static int output_packet(InputStream *ist, int ist_index,
|
|||||||
} else {
|
} else {
|
||||||
AVFrame avframe; //FIXME/XXX remove this
|
AVFrame avframe; //FIXME/XXX remove this
|
||||||
AVPacket opkt;
|
AVPacket opkt;
|
||||||
int64_t ost_tb_start_time= av_rescale_q(start_time, AV_TIME_BASE_Q, ost->st->time_base);
|
int64_t ost_tb_start_time= av_rescale_q(of->start_time, AV_TIME_BASE_Q, ost->st->time_base);
|
||||||
|
|
||||||
av_init_packet(&opkt);
|
av_init_packet(&opkt);
|
||||||
|
|
||||||
@ -3562,6 +3566,7 @@ static void opt_output_file(const char *filename)
|
|||||||
output_files[nb_output_files - 1].ctx = oc;
|
output_files[nb_output_files - 1].ctx = oc;
|
||||||
output_files[nb_output_files - 1].ost_index = nb_output_streams - oc->nb_streams;
|
output_files[nb_output_files - 1].ost_index = nb_output_streams - oc->nb_streams;
|
||||||
output_files[nb_output_files - 1].recording_time = recording_time;
|
output_files[nb_output_files - 1].recording_time = recording_time;
|
||||||
|
output_files[nb_output_files - 1].start_time = start_time;
|
||||||
av_dict_copy(&output_files[nb_output_files - 1].opts, format_opts, 0);
|
av_dict_copy(&output_files[nb_output_files - 1].opts, format_opts, 0);
|
||||||
|
|
||||||
/* check filename in case of an image number is expected */
|
/* check filename in case of an image number is expected */
|
||||||
@ -3688,6 +3693,7 @@ static void opt_output_file(const char *filename)
|
|||||||
audio_sample_fmt = AV_SAMPLE_FMT_NONE;
|
audio_sample_fmt = AV_SAMPLE_FMT_NONE;
|
||||||
chapters_input_file = INT_MAX;
|
chapters_input_file = INT_MAX;
|
||||||
recording_time = INT64_MAX;
|
recording_time = INT64_MAX;
|
||||||
|
start_time = 0;
|
||||||
|
|
||||||
av_freep(&meta_data_maps);
|
av_freep(&meta_data_maps);
|
||||||
nb_meta_data_maps = 0;
|
nb_meta_data_maps = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user