libavfilter/vf_format.c
fcbed3c7
 /*
3fa77bde
  * Copyright (c) 2007 Bobby Bingham
fcbed3c7
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
ba87f080
  * @file
dc264e77
  * format and noformat video filters
fcbed3c7
  */
 
1d9c2dc8
 #include <string.h>
 
 #include "libavutil/internal.h"
 #include "libavutil/mem.h"
718c7b18
 #include "libavutil/pixdesc.h"
fcbed3c7
 #include "avfilter.h"
e26782a9
 #include "internal.h"
b74a1da4
 #include "formats.h"
9d0bfc50
 #include "internal.h"
c04c533f
 #include "video.h"
fcbed3c7
 
 typedef struct {
     /**
      * List of flags telling if a given image format has been listed
      * as argument to the filter.
      */
716d413c
     int listed_pix_fmt_flags[AV_PIX_FMT_NB];
fcbed3c7
 } FormatContext;
 
716d413c
 #define AV_PIX_FMT_NAME_MAXSIZE 32
fcbed3c7
 
a5e8c41c
 static av_cold int init(AVFilterContext *ctx, const char *args)
fcbed3c7
 {
     FormatContext *format = ctx->priv;
     const char *cur, *sep;
716d413c
     char             pix_fmt_name[AV_PIX_FMT_NAME_MAXSIZE];
e26782a9
     int              pix_fmt_name_len, ret;
716d413c
     enum AVPixelFormat pix_fmt;
fcbed3c7
 
     /* parse the list of formats */
     for (cur = args; cur; cur = sep ? sep+1 : NULL) {
         if (!(sep = strchr(cur, ':')))
             pix_fmt_name_len = strlen(cur);
         else
             pix_fmt_name_len = sep - cur;
716d413c
         if (pix_fmt_name_len >= AV_PIX_FMT_NAME_MAXSIZE) {
fcbed3c7
             av_log(ctx, AV_LOG_ERROR, "Format name too long\n");
             return -1;
         }
 
         memcpy(pix_fmt_name, cur, pix_fmt_name_len);
         pix_fmt_name[pix_fmt_name_len] = 0;
 
e26782a9
         if ((ret = ff_parse_pixel_format(&pix_fmt, pix_fmt_name, ctx)) < 0)
             return ret;
fcbed3c7
 
         format->listed_pix_fmt_flags[pix_fmt] = 1;
     }
 
     return 0;
 }
 
 static AVFilterFormats *make_format_list(FormatContext *format, int flag)
 {
     AVFilterFormats *formats;
716d413c
     enum AVPixelFormat pix_fmt;
fcbed3c7
 
     formats = av_mallocz(sizeof(AVFilterFormats));
716d413c
     formats->formats = av_malloc(sizeof(enum AVPixelFormat) * AV_PIX_FMT_NB);
fcbed3c7
 
716d413c
     for (pix_fmt = 0; pix_fmt < AV_PIX_FMT_NB; pix_fmt++)
fcbed3c7
         if (format->listed_pix_fmt_flags[pix_fmt] == flag)
             formats->formats[formats->format_count++] = pix_fmt;
 
     return formats;
 }
 
c0bc2fed
 #if CONFIG_FORMAT_FILTER
55fd1bbc
 static int query_formats_format(AVFilterContext *ctx)
 {
b74a1da4
     ff_set_common_formats(ctx, make_format_list(ctx->priv, 1));
55fd1bbc
     return 0;
 }
 
568c70e7
 static const AVFilterPad avfilter_vf_format_inputs[] = {
     {
         .name             = "default",
         .type             = AVMEDIA_TYPE_VIDEO,
         .get_video_buffer = ff_null_get_video_buffer,
     },
     { NULL }
 };
 
 static const AVFilterPad avfilter_vf_format_outputs[] = {
     {
         .name = "default",
         .type = AVMEDIA_TYPE_VIDEO
     },
     { NULL }
 };
 
fcbed3c7
 AVFilter avfilter_vf_format = {
     .name      = "format",
a6881c6a
     .description = NULL_IF_CONFIG_SMALL("Convert the input video to one of the specified pixel formats."),
fcbed3c7
 
     .init      = init,
 
     .query_formats = query_formats_format,
 
     .priv_size = sizeof(FormatContext),
 
568c70e7
     .inputs    = avfilter_vf_format_inputs,
     .outputs   = avfilter_vf_format_outputs,
fcbed3c7
 };
c0bc2fed
 #endif /* CONFIG_FORMAT_FILTER */
fcbed3c7
 
c0bc2fed
 #if CONFIG_NOFORMAT_FILTER
55fd1bbc
 static int query_formats_noformat(AVFilterContext *ctx)
 {
b74a1da4
     ff_set_common_formats(ctx, make_format_list(ctx->priv, 0));
55fd1bbc
     return 0;
 }
 
568c70e7
 static const AVFilterPad avfilter_vf_noformat_inputs[] = {
     {
         .name             = "default",
         .type             = AVMEDIA_TYPE_VIDEO,
         .get_video_buffer = ff_null_get_video_buffer,
     },
     { NULL }
 };
 
 static const AVFilterPad avfilter_vf_noformat_outputs[] = {
     {
         .name = "default",
         .type = AVMEDIA_TYPE_VIDEO
     },
     { NULL }
 };
 
fcbed3c7
 AVFilter avfilter_vf_noformat = {
     .name      = "noformat",
a6881c6a
     .description = NULL_IF_CONFIG_SMALL("Force libavfilter not to use any of the specified pixel formats for the input to the next filter."),
fcbed3c7
 
     .init      = init,
 
     .query_formats = query_formats_noformat,
 
     .priv_size = sizeof(FormatContext),
 
568c70e7
     .inputs    = avfilter_vf_noformat_inputs,
     .outputs   = avfilter_vf_noformat_outputs,
fcbed3c7
 };
c0bc2fed
 #endif /* CONFIG_NOFORMAT_FILTER */