2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* video_stream.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
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). */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifndef VIDEO_STREAM_H
|
|
|
|
#define VIDEO_STREAM_H
|
|
|
|
|
2014-11-02 15:31:01 +01:00
|
|
|
#include "scene/resources/texture.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-09-26 19:50:42 +02:00
|
|
|
class VideoStreamPlayback : public Resource {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(VideoStreamPlayback, Resource);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
public:
|
2017-09-14 22:45:02 +02:00
|
|
|
typedef int (*AudioMixCallback)(void *p_udata, const float *p_data, int p_frames);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void stop() = 0;
|
|
|
|
virtual void play() = 0;
|
2014-09-15 16:33:30 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual bool is_playing() const = 0;
|
2014-09-15 16:33:30 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void set_paused(bool p_paused) = 0;
|
2017-09-14 22:45:02 +02:00
|
|
|
virtual bool is_paused() const = 0;
|
2014-09-15 16:33:30 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void set_loop(bool p_enable) = 0;
|
|
|
|
virtual bool has_loop() const = 0;
|
2014-09-15 16:33:30 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual float get_length() const = 0;
|
2014-09-15 16:33:30 +02:00
|
|
|
|
2017-09-21 05:31:36 +02:00
|
|
|
virtual float get_playback_position() const = 0;
|
|
|
|
virtual void seek(float p_time) = 0;
|
2014-09-15 16:33:30 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void set_audio_track(int p_idx) = 0;
|
2014-11-12 15:23:23 +01:00
|
|
|
|
2019-10-24 02:35:47 +02:00
|
|
|
virtual Ref<Texture> get_texture() const = 0;
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void update(float p_delta) = 0;
|
2014-09-15 16:33:30 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void set_mix_callback(AudioMixCallback p_callback, void *p_userdata) = 0;
|
|
|
|
virtual int get_channels() const = 0;
|
|
|
|
virtual int get_mix_rate() const = 0;
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2015-09-26 19:50:42 +02:00
|
|
|
class VideoStream : public Resource {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(VideoStream, Resource);
|
2020-01-26 11:24:14 +01:00
|
|
|
OBJ_SAVE_TYPE(VideoStream); // Saves derived classes with common type so they can be interchanged.
|
2015-09-26 19:50:42 +02:00
|
|
|
|
|
|
|
public:
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void set_audio_track(int p_track) = 0;
|
|
|
|
virtual Ref<VideoStreamPlayback> instance_playback() = 0;
|
2015-09-26 19:50:42 +02:00
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#endif
|