summaryrefslogtreecommitdiff
path: root/fftools/ffmpeg_enc.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2023-05-27 12:32:38 +0200
committerAnton Khirnov <anton@khirnov.net>2023-06-05 16:15:04 +0200
commit568d414074ddb02976d1bf5a491dba3571eafeba (patch)
tree0dc81e008279118ed670227442ec8b68b08b28bd /fftools/ffmpeg_enc.c
parent963034107356cc83a75115644e1516e92c6fa3db (diff)
fftools/ffmpeg: attach filter framerate to frames
This way the encoder does not need to reach backward into the filter.
Diffstat (limited to 'fftools/ffmpeg_enc.c')
-rw-r--r--fftools/ffmpeg_enc.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/fftools/ffmpeg_enc.c b/fftools/ffmpeg_enc.c
index f6431b29d1..cd2faccf4e 100644
--- a/fftools/ffmpeg_enc.c
+++ b/fftools/ffmpeg_enc.c
@@ -217,8 +217,10 @@ int enc_open(OutputStream *ost, AVFrame *frame)
case AVMEDIA_TYPE_VIDEO: {
AVRational fr = ost->frame_rate;
- if (!fr.num)
- fr = av_buffersink_get_frame_rate(ost->filter->filter);
+ if (!fr.num && frame) {
+ FrameData *fd = frame_data(frame);
+ fr = fd->frame_rate_filter;
+ }
if (!fr.num && !ost->max_frame_rate.num) {
fr = (AVRational){25, 1};
av_log(ost, AV_LOG_WARNING,
@@ -1024,17 +1026,18 @@ static void do_video_out(OutputFile *of, OutputStream *ost, AVFrame *frame)
int ret;
Encoder *e = ost->enc;
AVCodecContext *enc = ost->enc_ctx;
- AVRational frame_rate;
int64_t nb_frames, nb_frames_prev, i;
double duration = 0;
- AVFilterContext *filter = ost->filter->filter;
- if (frame)
+ if (frame) {
+ FrameData *fd = frame_data(frame);
+
duration = lrintf(frame->duration * av_q2d(frame->time_base) / av_q2d(enc->time_base));
- frame_rate = av_buffersink_get_frame_rate(filter);
- if (duration <= 0 && frame_rate.num > 0 && frame_rate.den > 0)
- duration = 1/(av_q2d(frame_rate) * av_q2d(enc->time_base));
+ if (duration <= 0 &&
+ fd->frame_rate_filter.num > 0 && fd->frame_rate_filter.den > 0)
+ duration = 1 / (av_q2d(fd->frame_rate_filter) * av_q2d(enc->time_base));
+ }
video_sync_process(of, ost, frame, duration,
&nb_frames, &nb_frames_prev);