1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avfilter/vf_thumbnail_cuda: Reindent after the previous commit

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2021-10-05 22:36:24 +02:00
parent 06045f4b1d
commit 37cb26bf79

View File

@@ -304,7 +304,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
static av_cold void uninit(AVFilterContext *ctx)
{
int i;
ThumbnailCudaContext *s = ctx->priv;
if (s->hwctx) {
@@ -322,7 +321,7 @@ static av_cold void uninit(AVFilterContext *ctx)
}
if (s->frames) {
for (i = 0; i < s->n_frames && s->frames[i].buf; i++)
for (int i = 0; i < s->n_frames && s->frames[i].buf; i++)
av_frame_free(&s->frames[i].buf);
av_freep(&s->frames);
}