aboutsummaryrefslogtreecommitdiffstats
path: root/fftools/ffmpeg_filter.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2023-07-23 10:35:08 +0200
committerAnton Khirnov <anton@khirnov.net>2023-08-30 11:53:50 +0200
commitd55262704e2c5c5a9a07d6b29ba74fa093d5320d (patch)
tree2eb59b92d0c17578d1a929bf9b6e620a2661b991 /fftools/ffmpeg_filter.c
parentfbcecdec8a3af8e9d8ea285b70a797e1840852c3 (diff)
downloadffmpeg-d55262704e2c5c5a9a07d6b29ba74fa093d5320d.tar.gz
fftools/ffmpeg_filter: shorten a variable name
Diffstat (limited to 'fftools/ffmpeg_filter.c')
-rw-r--r--fftools/ffmpeg_filter.c27
1 files changed, 12 insertions, 15 deletions
diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c
index db5b57d0e3..283ba44c2b 100644
--- a/fftools/ffmpeg_filter.c
+++ b/fftools/ffmpeg_filter.c
@@ -1745,13 +1745,13 @@ static int fg_output_step(OutputFilterPriv *ofp, int flush)
{
FilterGraphPriv *fgp = fgp_from_fg(ofp->ofilter.graph);
OutputStream *ost = ofp->ofilter.ost;
- AVFrame *filtered_frame = fgp->frame;
+ AVFrame *frame = fgp->frame;
AVFilterContext *filter = ofp->filter;
FrameData *fd;
int ret;
- ret = av_buffersink_get_frame_flags(filter, filtered_frame,
- AV_BUFFERSINK_FLAG_NO_REQUEST);
+ ret = av_buffersink_get_frame_flags(filter, frame,
+ AV_BUFFERSINK_FLAG_NO_REQUEST);
if (ret < 0) {
if (ret != AVERROR(EAGAIN) && ret != AVERROR_EOF) {
av_log(fgp, AV_LOG_WARNING,
@@ -1766,26 +1766,23 @@ static int fg_output_step(OutputFilterPriv *ofp, int flush)
return 1;
}
if (ost->finished) {
- av_frame_unref(filtered_frame);
+ av_frame_unref(frame);
return 0;
}
- if (filtered_frame->pts != AV_NOPTS_VALUE) {
+ if (frame->pts != AV_NOPTS_VALUE) {
AVRational tb = av_buffersink_get_time_base(filter);
- ost->filter->last_pts = av_rescale_q(filtered_frame->pts, tb,
- AV_TIME_BASE_Q);
- filtered_frame->time_base = tb;
+ ost->filter->last_pts = av_rescale_q(frame->pts, tb, AV_TIME_BASE_Q);
+ frame->time_base = tb;
if (debug_ts)
av_log(fgp, AV_LOG_INFO, "filter_raw -> pts:%s pts_time:%s time_base:%d/%d\n",
- av_ts2str(filtered_frame->pts),
- av_ts2timestr(filtered_frame->pts, &tb),
- tb.num, tb.den);
+ av_ts2str(frame->pts), av_ts2timestr(frame->pts, &tb), tb.num, tb.den);
}
- fd = frame_data(filtered_frame);
+ fd = frame_data(frame);
if (!fd) {
- av_frame_unref(filtered_frame);
+ av_frame_unref(frame);
return AVERROR(ENOMEM);
}
@@ -1800,8 +1797,8 @@ static int fg_output_step(OutputFilterPriv *ofp, int flush)
fd->frame_rate_filter = fr;
}
- ret = enc_frame(ost, filtered_frame);
- av_frame_unref(filtered_frame);
+ ret = enc_frame(ost, frame);
+ av_frame_unref(frame);
if (ret < 0)
return ret;