Path: blob/master/servers/movie_writer/movie_writer.h
10278 views
/**************************************************************************/1/* movie_writer.h */2/**************************************************************************/3/* This file is part of: */4/* GODOT ENGINE */5/* https://godotengine.org */6/**************************************************************************/7/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */8/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */9/* */10/* Permission is hereby granted, free of charge, to any person obtaining */11/* a copy of this software and associated documentation files (the */12/* "Software"), to deal in the Software without restriction, including */13/* without limitation the rights to use, copy, modify, merge, publish, */14/* distribute, sublicense, and/or sell copies of the Software, and to */15/* permit persons to whom the Software is furnished to do so, subject to */16/* the following conditions: */17/* */18/* The above copyright notice and this permission notice shall be */19/* included in all copies or substantial portions of the Software. */20/* */21/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */22/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */23/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */24/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */25/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */26/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */27/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */28/**************************************************************************/2930#pragma once3132#include "core/io/image.h"33#include "core/templates/local_vector.h"34#include "servers/audio_server.h"3536class MovieWriter : public Object {37GDCLASS(MovieWriter, Object);3839uint64_t fps = 0;40uint64_t mix_rate = 0;41uint32_t audio_channels = 0;4243float cpu_time = 0.0f;44float gpu_time = 0.0f;45uint64_t encoding_time_usec = 0;4647String project_name;4849LocalVector<int32_t> audio_mix_buffer;5051enum {52MAX_WRITERS = 853};54static MovieWriter *writers[];55static uint32_t writer_count;5657protected:58virtual uint32_t get_audio_mix_rate() const;59virtual AudioServer::SpeakerMode get_audio_speaker_mode() const;6061virtual Error write_begin(const Size2i &p_movie_size, uint32_t p_fps, const String &p_base_path);62virtual Error write_frame(const Ref<Image> &p_image, const int32_t *p_audio_data);63virtual void write_end();6465GDVIRTUAL0RC_REQUIRED(uint32_t, _get_audio_mix_rate)66GDVIRTUAL0RC_REQUIRED(AudioServer::SpeakerMode, _get_audio_speaker_mode)6768GDVIRTUAL1RC_REQUIRED(bool, _handles_file, const String &)69GDVIRTUAL0RC_REQUIRED(Vector<String>, _get_supported_extensions)7071GDVIRTUAL3R_REQUIRED(Error, _write_begin, const Size2i &, uint32_t, const String &)72GDVIRTUAL2R_REQUIRED(Error, _write_frame, const Ref<Image> &, GDExtensionConstPtr<int32_t>)73GDVIRTUAL0_REQUIRED(_write_end)7475static void _bind_methods();7677public:78virtual bool handles_file(const String &p_path) const;79virtual void get_supported_extensions(List<String> *r_extensions) const;8081static void add_writer(MovieWriter *p_writer);82static MovieWriter *find_writer_for_file(const String &p_file);8384void begin(const Size2i &p_movie_size, uint32_t p_fps, const String &p_base_path);85void add_frame();8687static void set_extensions_hint();8889void end();90};919293