mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avconv: make output -ss insert trim/atrim filters.
This makes output -ss sample-accurate for audio and will allow further simplication in the future.
This commit is contained in:
parent
a83c0da539
commit
8cd472d3f9
@ -14,7 +14,8 @@ version 10:
|
|||||||
- JPEG 2000 decoder
|
- JPEG 2000 decoder
|
||||||
- new asetpts filter (same as setpts, but for audio)
|
- new asetpts filter (same as setpts, but for audio)
|
||||||
- new trim and atrim filters
|
- new trim and atrim filters
|
||||||
- avconv -t option is now sample-accurate when transcoding audio
|
- avconv -t and -ss (output-only) options are now sample-accurate when
|
||||||
|
transcoding audio
|
||||||
|
|
||||||
|
|
||||||
version 9:
|
version 9:
|
||||||
|
5
avconv.c
5
avconv.c
@ -681,11 +681,6 @@ static int poll_filter(OutputStream *ost)
|
|||||||
av_rescale_q(of->start_time,
|
av_rescale_q(of->start_time,
|
||||||
AV_TIME_BASE_Q,
|
AV_TIME_BASE_Q,
|
||||||
ost->st->codec->time_base);
|
ost->st->codec->time_base);
|
||||||
|
|
||||||
if (of->start_time && filtered_frame->pts < 0) {
|
|
||||||
av_frame_unref(filtered_frame);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (ost->filter->filter->inputs[0]->type) {
|
switch (ost->filter->filter->inputs[0]->type) {
|
||||||
|
@ -183,7 +183,7 @@ static int insert_trim(OutputStream *ost, AVFilterContext **last_filter, int *pa
|
|||||||
char filter_name[128];
|
char filter_name[128];
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
if (of->recording_time == INT64_MAX)
|
if (of->recording_time == INT64_MAX && !of->start_time)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
trim = avfilter_get_by_name(name);
|
trim = avfilter_get_by_name(name);
|
||||||
@ -199,8 +199,14 @@ static int insert_trim(OutputStream *ost, AVFilterContext **last_filter, int *pa
|
|||||||
if (!ctx)
|
if (!ctx)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
|
||||||
ret = av_opt_set_double(ctx, "duration", (double)of->recording_time / 1e6,
|
if (of->recording_time != INT64_MAX) {
|
||||||
AV_OPT_SEARCH_CHILDREN);
|
ret = av_opt_set_double(ctx, "duration", (double)of->recording_time / 1e6,
|
||||||
|
AV_OPT_SEARCH_CHILDREN);
|
||||||
|
}
|
||||||
|
if (ret >= 0 && of->start_time) {
|
||||||
|
ret = av_opt_set_double(ctx, "start", (double)of->start_time / 1e6,
|
||||||
|
AV_OPT_SEARCH_CHILDREN);
|
||||||
|
}
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
av_log(ctx, AV_LOG_ERROR, "Error configuring the %s filter", name);
|
av_log(ctx, AV_LOG_ERROR, "Error configuring the %s filter", name);
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user