mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Merge commit '48ff6683ba5d40b629428673b1028e8ec542a9fa'
* commit '48ff6683ba5d40b629428673b1028e8ec542a9fa': lavfi: add a frame_rate field to AVFilterLink. Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
This commit is contained in:
commit
0b73d0ff0d
@ -275,10 +275,9 @@ int avfilter_config_links(AVFilterContext *filter)
|
||||
link->sample_aspect_ratio = inlink ?
|
||||
inlink->sample_aspect_ratio : (AVRational){1,1};
|
||||
|
||||
if (inlink && !link->frame_rate.num && !link->frame_rate.den)
|
||||
link->frame_rate = inlink->frame_rate;
|
||||
|
||||
if (inlink) {
|
||||
if (!link->frame_rate.num && !link->frame_rate.den)
|
||||
link->frame_rate = inlink->frame_rate;
|
||||
if (!link->w)
|
||||
link->w = inlink->w;
|
||||
if (!link->h)
|
||||
|
@ -445,11 +445,12 @@ struct AVFilterLink {
|
||||
int age_index;
|
||||
|
||||
/**
|
||||
* Frame rate of the stream on the link, or 1/0 if unknown;
|
||||
* if left to 0/0, will be automatically be copied from the first input
|
||||
* Frame rate of the stream on the link, or 1/0 if unknown or variable;
|
||||
* if left to 0/0, will be automatically copied from the first input
|
||||
* of the source filter if it exists.
|
||||
*
|
||||
* Sources should set it to the best estimation of the real frame rate.
|
||||
* If the source frame rate is unknown or variable, set this to 1/0.
|
||||
* Filters should update it if necessary depending on their function.
|
||||
* Sinks can use it to set a default output frame rate.
|
||||
* It is similar to the r_frame_rate field in AVStream.
|
||||
|
Loading…
Reference in New Issue
Block a user