Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
To: ffmpeg-devel@ffmpeg.org
Subject: Re: [FFmpeg-devel] [PATCH] Add new vf_tiltandshift filter
Date: Fri, 15 Dec 2023 18:36:14 +0100
Message-ID: <AS8P250MB0744C078873F26009CB5F0C58F93A@AS8P250MB0744.EURP250.PROD.OUTLOOK.COM> (raw)
In-Reply-To: <CABLWnS-p=eBYBwUbdnEUdw9L753sZSZoqtGGV1s-GXobTN_9Bw@mail.gmail.com>

Vittorio Giovara:
> +#include "avfilter.h"
> +#include "formats.h"
> +#include "internal.h"
> +#include "video.h"
> +
> +#define TILT_NONE  -1
> +#define TILT_FRAME  0
> +#define TILT_BLACK  1

Why is this not an enum?

> +
> +typedef struct FrameList {
> +    AVFrame *frame;
> +    struct FrameList *next;
> +} FrameList;
> +
> +typedef struct TiltandshiftContext {
> +    const AVClass *class;
> +
> +    /* set when all input frames have been processed and we have to
> +     * empty buffers, pad and then return */
> +    int eof_recv;
> +
> +    /* live or static sliding */
> +    int tilt;
> +
> +    /* initial or final actions to perform (pad/hold a 
> frame/black/nothing) */
> +    int start;
> +    int end;
> +
> +    /* columns to hold or pad at the beginning or at the end 
> (respectively) */
> +    int hold;
> +    int pad;
> +
> +    /* buffers for black columns */
> +    uint8_t *black_buffers[4];
> +    int black_linesizes[4];
> +
> +    /* list containing all input frames */
> +    size_t input_size;
> +    FrameList *input;
> +    FrameList *prev;
> +
> +    const AVPixFmtDescriptor *desc;
> +} TiltandshiftContext;
> +
> +static int list_add_frame(FrameList **list, size_t *size, AVFrame 
> *frame)
> +{
> +    FrameList *element = av_mallocz(sizeof(FrameList));

The overhead of this FrameList is unnecessary: You can simply use
AVFrame.opaque as your next pointer.

> +    if (!element)
> +        return AVERROR(ENOMEM);
> +
> +    element->frame = frame;
> +
> +    if (*list == NULL) {
> +        *list = element;
> +    } else {
> +        FrameList *head = *list;
> +        while (head->next)
> +            head = head->next;
> +        head->next = element;
> +    }
> +
> +    (*size)++;
> +    return 0;
> +}
> +
> +static void list_remove_head(FrameList **list, size_t *size)
> +{
> +    FrameList *head = *list;
> +    if (head) {
> +        av_frame_free(&head->frame);
> +        *list = head->next;
> +        av_freep(&head);
> +    }
> +
> +    (*size)--;
> +}
> +
> +static const enum AVPixelFormat formats_supported[] = {
> +    AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV444P,
> +    AV_PIX_FMT_YUV410P,
> +    AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ444P,
> +    AV_PIX_FMT_YUVJ440P,
> +    AV_PIX_FMT_NONE
> +};
> +
> +static int query_formats(AVFilterContext *ctx)
> +{
> +    return ff_set_common_formats(ctx, 
> ff_make_format_list(formats_supported));

Unnecessary. Use FILTER_PIXFMTS_ARRAY.


> +
> +AVFilter ff_vf_tiltandshift = {

const AVFilter

> +    .name          = "tiltandshift",
> +    .description   = NULL_IF_CONFIG_SMALL("Generate a tilt-and-shift'd 
> video."),
> +    .priv_size     = sizeof(TiltandshiftContext),
> +    .priv_class    = &tiltandshift_class,
> +    .uninit        = uninit,
> +    FILTER_INPUTS(tiltandshift_inputs),
> +    FILTER_OUTPUTS(tiltandshift_outputs),
> +    FILTER_QUERY_FUNC(query_formats),
> +};

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

  reply	other threads:[~2023-12-15 17:34 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-12  0:51 Vittorio Giovara
2023-12-12  8:00 ` Nicolas George
2023-12-13 10:06   ` Vittorio Giovara
2023-12-15 17:36     ` Andreas Rheinhardt [this message]
2023-12-15 20:12       ` Vittorio Giovara
2023-12-20 19:43         ` Vittorio Giovara
2023-12-20 19:50           ` Nicolas George
2023-12-20 19:56             ` Vittorio Giovara
2023-12-21 21:43               ` Vittorio Giovara
2023-12-22 15:33                 ` Paul B Mahol
2023-12-22 15:40                   ` Ronald S. Bultje
2023-12-22 21:48                     ` Paul B Mahol

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=AS8P250MB0744C078873F26009CB5F0C58F93A@AS8P250MB0744.EURP250.PROD.OUTLOOK.COM \
    --to=andreas.rheinhardt@outlook.com \
    --cc=ffmpeg-devel@ffmpeg.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git