| 
									
										
										
										
											2018-07-29 01:31:30 +05:30
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  video_stream_gdnative.h                                              */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                      https://godotengine.org                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-01-01 11:16:22 +01:00
										 |  |  | /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2018-07-29 01:31:30 +05:30
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef VIDEO_STREAM_GDNATIVE_H
 | 
					
						
							|  |  |  | #define VIDEO_STREAM_GDNATIVE_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-12 15:21:44 +01:00
										 |  |  | #include "../gdnative.h"
 | 
					
						
							|  |  |  | #include "core/os/file_access.h"
 | 
					
						
							|  |  |  | #include "scene/resources/texture.h"
 | 
					
						
							|  |  |  | #include "scene/resources/video_stream.h"
 | 
					
						
							| 
									
										
										
										
											2018-07-29 01:31:30 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | struct VideoDecoderGDNative { | 
					
						
							| 
									
										
										
										
											2018-12-12 15:21:44 +01:00
										 |  |  | 	const godot_videodecoder_interface_gdnative *interface; | 
					
						
							| 
									
										
										
										
											2018-07-29 01:31:30 +05:30
										 |  |  | 	String plugin_name; | 
					
						
							|  |  |  | 	Vector<String> supported_extensions; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VideoDecoderGDNative() : | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 			interface(nullptr), | 
					
						
							| 
									
										
										
										
											2018-07-29 01:31:30 +05:30
										 |  |  | 			plugin_name("none") {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VideoDecoderGDNative(const godot_videodecoder_interface_gdnative *p_interface) : | 
					
						
							|  |  |  | 			interface(p_interface), | 
					
						
							|  |  |  | 			plugin_name(p_interface->get_plugin_name()) { | 
					
						
							|  |  |  | 		_get_supported_extensions(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 	void _get_supported_extensions() { | 
					
						
							|  |  |  | 		supported_extensions.clear(); | 
					
						
							|  |  |  | 		int num_ext; | 
					
						
							|  |  |  | 		const char **supported_ext = interface->get_supported_extensions(&num_ext); | 
					
						
							|  |  |  | 		for (int i = 0; i < num_ext; i++) { | 
					
						
							|  |  |  | 			supported_extensions.push_back(supported_ext[i]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class VideoDecoderServer { | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 	Vector<VideoDecoderGDNative *> decoders; | 
					
						
							|  |  |  | 	Map<String, int> extensions; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static VideoDecoderServer *instance; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	static VideoDecoderServer *get_instance() { | 
					
						
							|  |  |  | 		return instance; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const Map<String, int> &get_extensions() { | 
					
						
							|  |  |  | 		return extensions; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void register_decoder_interface(const godot_videodecoder_interface_gdnative *p_interface) { | 
					
						
							|  |  |  | 		VideoDecoderGDNative *decoder = memnew(VideoDecoderGDNative(p_interface)); | 
					
						
							|  |  |  | 		int index = decoders.size(); | 
					
						
							|  |  |  | 		for (int i = 0; i < decoder->supported_extensions.size(); i++) { | 
					
						
							|  |  |  | 			extensions[decoder->supported_extensions[i]] = index; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		decoders.push_back(decoder); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VideoDecoderGDNative *get_decoder(const String &extension) { | 
					
						
							|  |  |  | 		if (extensions.size() == 0 || !extensions.has(extension)) | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 			return nullptr; | 
					
						
							| 
									
										
										
										
											2018-07-29 01:31:30 +05:30
										 |  |  | 		return decoders[extensions[extension]]; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VideoDecoderServer() { | 
					
						
							|  |  |  | 		instance = this; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	~VideoDecoderServer() { | 
					
						
							|  |  |  | 		for (int i = 0; i < decoders.size(); i++) { | 
					
						
							|  |  |  | 			memdelete(decoders[i]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		decoders.clear(); | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		instance = nullptr; | 
					
						
							| 
									
										
										
										
											2018-07-29 01:31:30 +05:30
										 |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class VideoStreamPlaybackGDNative : public VideoStreamPlayback { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	GDCLASS(VideoStreamPlaybackGDNative, VideoStreamPlayback); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<ImageTexture> texture; | 
					
						
							|  |  |  | 	bool playing; | 
					
						
							|  |  |  | 	bool paused; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Vector2 texture_size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void *mix_udata; | 
					
						
							|  |  |  | 	AudioMixCallback mix_callback; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int num_channels; | 
					
						
							|  |  |  | 	float time; | 
					
						
							| 
									
										
										
										
											2019-09-19 15:27:31 +10:00
										 |  |  | 	bool seek_backward; | 
					
						
							| 
									
										
										
										
											2018-07-29 01:31:30 +05:30
										 |  |  | 	int mix_rate; | 
					
						
							|  |  |  | 	double delay_compensation; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	float *pcm; | 
					
						
							|  |  |  | 	int pcm_write_idx; | 
					
						
							|  |  |  | 	int samples_decoded; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void cleanup(); | 
					
						
							|  |  |  | 	void update_texture(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 	String file_name; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-12 15:21:44 +01:00
										 |  |  | 	FileAccess *file; | 
					
						
							| 
									
										
										
										
											2018-07-29 01:31:30 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-12 15:21:44 +01:00
										 |  |  | 	const godot_videodecoder_interface_gdnative *interface; | 
					
						
							|  |  |  | 	void *data_struct; | 
					
						
							| 
									
										
										
										
											2018-07-29 01:31:30 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	VideoStreamPlaybackGDNative(); | 
					
						
							|  |  |  | 	~VideoStreamPlaybackGDNative(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_interface(const godot_videodecoder_interface_gdnative *p_interface); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool open_file(const String &p_file); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void stop(); | 
					
						
							|  |  |  | 	virtual void play(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual bool is_playing() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void set_paused(bool p_paused); | 
					
						
							|  |  |  | 	virtual bool is_paused() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void set_loop(bool p_enable); | 
					
						
							|  |  |  | 	virtual bool has_loop() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual float get_length() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual float get_playback_position() const; | 
					
						
							|  |  |  | 	virtual void seek(float p_time); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void set_audio_track(int p_idx); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//virtual int mix(int16_t* p_buffer,int p_frames)=0;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 	virtual Ref<Texture2D> get_texture() const; | 
					
						
							| 
									
										
										
										
											2018-07-29 01:31:30 +05:30
										 |  |  | 	virtual void update(float p_delta); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void set_mix_callback(AudioMixCallback p_callback, void *p_userdata); | 
					
						
							|  |  |  | 	virtual int get_channels() const; | 
					
						
							|  |  |  | 	virtual int get_mix_rate() const; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class VideoStreamGDNative : public VideoStream { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	GDCLASS(VideoStreamGDNative, VideoStream); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String file; | 
					
						
							|  |  |  | 	int audio_track; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 	static void | 
					
						
							|  |  |  | 	_bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	void set_file(const String &p_file); | 
					
						
							|  |  |  | 	String get_file(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void set_audio_track(int p_track); | 
					
						
							|  |  |  | 	virtual Ref<VideoStreamPlayback> instance_playback(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 19:29:35 +02:00
										 |  |  | 	VideoStreamGDNative() { audio_track = 0; } | 
					
						
							| 
									
										
										
										
											2018-07-29 01:31:30 +05:30
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-12 15:47:57 +01:00
										 |  |  | class ResourceFormatLoaderVideoStreamGDNative : public ResourceFormatLoader { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2020-04-19 23:19:21 -03:00
										 |  |  | 	virtual RES load(const String &p_path, const String &p_original_path = "", Error *r_error = nullptr, bool p_use_sub_threads = false, float *r_progress = nullptr, bool p_no_cache = false); | 
					
						
							| 
									
										
										
										
											2018-12-12 15:47:57 +01:00
										 |  |  | 	virtual void get_recognized_extensions(List<String> *p_extensions) const; | 
					
						
							|  |  |  | 	virtual bool handles_type(const String &p_type) const; | 
					
						
							|  |  |  | 	virtual String get_resource_type(const String &p_path) const; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-29 01:31:30 +05:30
										 |  |  | #endif
 |