// AUTOGENERATED COPYRIGHT HEADER START // Copyright (C) 2020-2023 Michael Fabian 'Xaymar' Dirks // Copyright (C) 2022 lainon // AUTOGENERATED COPYRIGHT HEADER END #pragma once #include "common.hpp" #include "warning-disable.hpp" #include #include "warning-enable.hpp" extern "C" { #include "warning-disable.hpp" #include #include #include #include "warning-enable.hpp" } namespace streamfx::ffmpeg::tools { const char* get_pixel_format_name(AVPixelFormat v); const char* get_color_space_name(AVColorSpace v); const char* get_error_description(int error); AVPixelFormat obs_videoformat_to_avpixelformat(video_format v); video_format avpixelformat_to_obs_videoformat(AVPixelFormat v); AVPixelFormat get_least_lossy_format(const AVPixelFormat* haystack, AVPixelFormat needle); AVColorRange obs_to_av_color_range(video_range_type v); AVColorSpace obs_to_av_color_space(video_colorspace v); AVColorPrimaries obs_to_av_color_primary(video_colorspace v); AVColorTransferCharacteristic obs_to_av_color_transfer_characteristics(video_colorspace v); bool can_hardware_encode(const AVCodec* codec); std::vector get_software_formats(const AVPixelFormat* list); void context_setup_from_obs(const video_output_info* voi, AVCodecContext* context); const char* get_std_compliance_name(int compliance); const char* get_thread_type_name(int thread_type); void print_av_option_bool(AVCodecContext* context, const char* option, std::string_view text, bool inverse = false); void print_av_option_bool(AVCodecContext* ctx_codec, void* ctx_option, const char* option, std::string_view text, bool inverse = false); void print_av_option_int(AVCodecContext* context, const char* option, std::string_view text, std::string_view suffix); void print_av_option_int(AVCodecContext* ctx_codec, void* ctx_option, const char* option, std::string_view text, std::string_view suffix); void print_av_option_string(AVCodecContext* context, const char* option, std::string_view text, std::function decoder); void print_av_option_string(AVCodecContext* ctx_codec, void* ctx_option, const char* option, std::string_view text, std::function decoder); void print_av_option_string2(AVCodecContext* context, std::string_view option, std::string_view text, std::function decoder); void print_av_option_string2(AVCodecContext* ctx_codec, void* ctx_option, std::string_view option, std::string_view text, std::function decoder); bool avoption_exists(const void* obj, std::string_view name); const char* avoption_name_from_unit_value(const void* obj, std::string_view unit, int64_t value); void avoption_list_add_entries(const void* obj, std::string_view unit, std::function inserter = nullptr); } // namespace streamfx::ffmpeg::tools