video_player.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*************************************************************************/
  2. /* video_player.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef VIDEO_PLAYER_H
  31. #define VIDEO_PLAYER_H
  32. #include "scene/gui/control.h"
  33. #include "scene/resources/video_stream.h"
  34. #include "servers/audio/audio_rb_resampler.h"
  35. #include "servers/audio_server.h"
  36. class VideoPlayer : public Control {
  37. GDCLASS(VideoPlayer, Control);
  38. struct Output {
  39. AudioFrame vol;
  40. int bus_index;
  41. Viewport *viewport; //pointer only used for reference to previous mix
  42. };
  43. Ref<VideoStreamPlayback> playback;
  44. Ref<VideoStream> stream;
  45. int sp_get_channel_count() const;
  46. bool mix(AudioFrame *p_buffer, int p_frames);
  47. RID stream_rid;
  48. Ref<ImageTexture> texture;
  49. AudioRBResampler resampler;
  50. Vector<AudioFrame> mix_buffer;
  51. int wait_resampler, wait_resampler_limit;
  52. bool paused;
  53. bool autoplay;
  54. float volume;
  55. double last_audio_time;
  56. bool expand;
  57. bool loops;
  58. int buffering_ms;
  59. int audio_track;
  60. int bus_index;
  61. StringName bus;
  62. void _mix_audio();
  63. static int _audio_mix_callback(void *p_udata, const float *p_data, int p_frames);
  64. static void _mix_audios(void *p_self);
  65. protected:
  66. static void _bind_methods();
  67. void _notification(int p_notification);
  68. void _validate_property(PropertyInfo &p_property) const;
  69. public:
  70. Size2 get_minimum_size() const;
  71. void set_expand(bool p_expand);
  72. bool has_expand() const;
  73. Ref<Texture> get_video_texture() const;
  74. void set_stream(const Ref<VideoStream> &p_stream);
  75. Ref<VideoStream> get_stream() const;
  76. void play();
  77. void stop();
  78. bool is_playing() const;
  79. void set_paused(bool p_paused);
  80. bool is_paused() const;
  81. void set_volume(float p_vol);
  82. float get_volume() const;
  83. void set_volume_db(float p_db);
  84. float get_volume_db() const;
  85. String get_stream_name() const;
  86. float get_stream_position() const;
  87. void set_stream_position(float p_position);
  88. void set_autoplay(bool p_enable);
  89. bool has_autoplay() const;
  90. void set_audio_track(int p_track);
  91. int get_audio_track() const;
  92. void set_buffering_msec(int p_msec);
  93. int get_buffering_msec() const;
  94. void set_bus(const StringName &p_bus);
  95. StringName get_bus() const;
  96. VideoPlayer();
  97. ~VideoPlayer();
  98. };
  99. #endif // VIDEO_PLAYER_H