/* SPDX-FileCopyrightText: 2001-2002 NaN Holding BV. All rights reserved. * * SPDX-License-Identifier: GPL-2.0-or-later */ #pragma once /** \file * \ingroup bke */ #ifdef WITH_FFMPEG enum { FFMPEG_MPEG1 = 0, FFMPEG_MPEG2 = 1, FFMPEG_MPEG4 = 2, FFMPEG_AVI = 3, FFMPEG_MOV = 4, FFMPEG_DV = 5, FFMPEG_H264 = 6, FFMPEG_XVID = 7, FFMPEG_FLV = 8, FFMPEG_MKV = 9, FFMPEG_OGG = 10, FFMPEG_INVALID = 11, FFMPEG_WEBM = 12, FFMPEG_AV1 = 13, }; enum { FFMPEG_PRESET_NONE = 0, FFMPEG_PRESET_H264 = 1, FFMPEG_PRESET_THEORA = 2, FFMPEG_PRESET_XVID = 3, FFMPEG_PRESET_AV1 = 4, }; struct AVFrame; struct ImageFormatData; struct ImBuf; struct RenderData; struct ReportList; struct Scene; struct SwsContext; bool BKE_ffmpeg_start(void *context_v, const Scene *scene, RenderData *rd, int rectx, int recty, ReportList *reports, bool preview, const char *suffix); void BKE_ffmpeg_end(void *context_v); bool BKE_ffmpeg_append(void *context_v, RenderData *rd, int start_frame, int frame, const ImBuf *image, const char *suffix, ReportList *reports); void BKE_ffmpeg_filepath_get(char filepath[/*FILE_MAX*/ 1024], const RenderData *rd, bool preview, const char *suffix); void BKE_ffmpeg_preset_set(RenderData *rd, int preset); void BKE_ffmpeg_image_type_verify(RenderData *rd, const ImageFormatData *imf); bool BKE_ffmpeg_alpha_channel_is_supported(const RenderData *rd); bool BKE_ffmpeg_codec_supports_crf(int av_codec_id); /** * Which pixel bit depths are supported by a given video codec. * Returns bitmask of `R_IMF_CHAN_DEPTH_` flags. */ int BKE_ffmpeg_valid_bit_depths(int av_codec_id); void *BKE_ffmpeg_context_create(); void BKE_ffmpeg_context_free(void *context_v); void BKE_ffmpeg_exit(); /** * Gets a `libswscale` context for given size and format parameters. * After you're done using the context, call #BKE_ffmpeg_sws_release_context * to release it. Internally the contexts are coming from the context * pool/cache. */ SwsContext *BKE_ffmpeg_sws_get_context(int src_width, int src_height, int av_src_format, int dst_width, int dst_height, int av_dst_format, int sws_flags); void BKE_ffmpeg_sws_release_context(SwsContext *ctx); void BKE_ffmpeg_sws_scale_frame(SwsContext *ctx, AVFrame *dst, const AVFrame *src); #endif