| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  video_stream_theora.cpp                                               */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* 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-09 22:10:30 -03:00
										 |  |  | #include "video_stream_theora.h"
 | 
					
						
							| 
									
										
										
										
											2016-10-13 19:40:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/config/project_settings.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/os/os.h"
 | 
					
						
							| 
									
										
										
										
											2017-04-28 19:28:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | #ifdef _MSC_VER
 | 
					
						
							|  |  |  | #pragma warning(push)
 | 
					
						
							|  |  |  | #pragma warning(disable : 4127)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-28 19:28:21 +02:00
										 |  |  | #include "thirdparty/misc/yuv2rgb.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | #ifdef _MSC_VER
 | 
					
						
							|  |  |  | #pragma warning(pop)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | int VideoStreamPlaybackTheora::buffer_data() { | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | 	char *buffer = ogg_sync_buffer(&oy, 4096); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef THEORA_USE_THREAD_STREAMING
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int read; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	do { | 
					
						
							|  |  |  | 		thread_sem->post(); | 
					
						
							|  |  |  | 		read = MIN(ring_buffer.data_left(), 4096); | 
					
						
							|  |  |  | 		if (read) { | 
					
						
							|  |  |  | 			ring_buffer.read((uint8_t *)buffer, read); | 
					
						
							|  |  |  | 			ogg_sync_wrote(&oy, read); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			OS::get_singleton()->delay_usec(100); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} while (read == 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return read; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-26 18:51:13 +01:00
										 |  |  | 	uint64_t bytes = file->get_buffer((uint8_t *)buffer, 4096); | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | 	ogg_sync_wrote(&oy, bytes); | 
					
						
							|  |  |  | 	return (bytes); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | int VideoStreamPlaybackTheora::queue_page(ogg_page *page) { | 
					
						
							| 
									
										
										
										
											2016-01-23 17:58:17 -03:00
										 |  |  | 	if (theora_p) { | 
					
						
							|  |  |  | 		ogg_stream_pagein(&to, page); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (to.e_o_s) { | 
					
						
							| 
									
										
										
										
											2016-01-23 17:58:17 -03:00
										 |  |  | 			theora_eos = true; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-01-23 17:58:17 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (vorbis_p) { | 
					
						
							|  |  |  | 		ogg_stream_pagein(&vo, page); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (vo.e_o_s) { | 
					
						
							| 
									
										
										
										
											2016-01-23 17:58:17 -03:00
										 |  |  | 			vorbis_eos = true; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-01-23 17:58:17 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 11:11:27 +02:00
										 |  |  | void VideoStreamPlaybackTheora::video_write() { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	th_ycbcr_buffer yuv; | 
					
						
							|  |  |  | 	th_decode_ycbcr_out(td, yuv); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int pitch = 4; | 
					
						
							|  |  |  | 	frame_data.resize(size.x * size.y * pitch); | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 		uint8_t *w = frame_data.ptrw(); | 
					
						
							|  |  |  | 		char *dst = (char *)w; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		if (px_fmt == TH_PF_444) { | 
					
						
							| 
									
										
										
										
											2019-02-18 21:19:33 +00:00
										 |  |  | 			yuv444_2_rgb8888((uint8_t *)dst, (uint8_t *)yuv[0].data, (uint8_t *)yuv[1].data, (uint8_t *)yuv[2].data, size.x, size.y, yuv[0].stride, yuv[1].stride, size.x << 2); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		} else if (px_fmt == TH_PF_422) { | 
					
						
							| 
									
										
										
										
											2019-02-18 21:19:33 +00:00
										 |  |  | 			yuv422_2_rgb8888((uint8_t *)dst, (uint8_t *)yuv[0].data, (uint8_t *)yuv[1].data, (uint8_t *)yuv[2].data, size.x, size.y, yuv[0].stride, yuv[1].stride, size.x << 2); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		} else if (px_fmt == TH_PF_420) { | 
					
						
							| 
									
										
										
										
											2019-02-18 21:19:33 +00:00
										 |  |  | 			yuv420_2_rgb8888((uint8_t *)dst, (uint8_t *)yuv[0].data, (uint8_t *)yuv[1].data, (uint8_t *)yuv[2].data, size.x, size.y, yuv[0].stride, yuv[1].stride, size.x << 2); | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 		format = Image::FORMAT_RGBA8; | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-17 07:36:47 -03:00
										 |  |  | 	Ref<Image> img = memnew(Image(size.x, size.y, 0, Image::FORMAT_RGBA8, frame_data)); //zero copy image creation
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-07 15:46:55 +02:00
										 |  |  | 	texture->update(img); //zero copy send to rendering server
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	frames_pending = 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | void VideoStreamPlaybackTheora::clear() { | 
					
						
							| 
									
										
										
										
											2022-03-23 11:08:58 +02:00
										 |  |  | 	if (file.is_null()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (vorbis_p) { | 
					
						
							|  |  |  | 		ogg_stream_clear(&vo); | 
					
						
							|  |  |  | 		if (vorbis_p >= 3) { | 
					
						
							|  |  |  | 			vorbis_block_clear(&vb); | 
					
						
							|  |  |  | 			vorbis_dsp_clear(&vd); | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		vorbis_comment_clear(&vc); | 
					
						
							|  |  |  | 		vorbis_info_clear(&vi); | 
					
						
							|  |  |  | 		vorbis_p = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (theora_p) { | 
					
						
							|  |  |  | 		ogg_stream_clear(&to); | 
					
						
							|  |  |  | 		th_decode_free(td); | 
					
						
							|  |  |  | 		th_comment_clear(&tc); | 
					
						
							|  |  |  | 		th_info_clear(&ti); | 
					
						
							|  |  |  | 		theora_p = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	ogg_sync_clear(&oy); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | #ifdef THEORA_USE_THREAD_STREAMING
 | 
					
						
							|  |  |  | 	thread_exit = true; | 
					
						
							|  |  |  | 	thread_sem->post(); //just in case
 | 
					
						
							| 
									
										
										
										
											2021-01-19 13:29:41 +01:00
										 |  |  | 	thread.wait_to_finish(); | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | 	ring_buffer.clear(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	theora_p = 0; | 
					
						
							|  |  |  | 	vorbis_p = 0; | 
					
						
							|  |  |  | 	videobuf_ready = 0; | 
					
						
							|  |  |  | 	frames_pending = 0; | 
					
						
							|  |  |  | 	videobuf_time = 0; | 
					
						
							| 
									
										
										
										
											2016-01-23 17:58:17 -03:00
										 |  |  | 	theora_eos = false; | 
					
						
							|  |  |  | 	vorbis_eos = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-12 10:12:40 +03:00
										 |  |  | 	file.unref(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	playing = false; | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | void VideoStreamPlaybackTheora::set_file(const String &p_file) { | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | 	ERR_FAIL_COND(playing); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	ogg_packet op; | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	th_setup_info *ts = nullptr; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	file_name = p_file; | 
					
						
							|  |  |  | 	file = FileAccess::open(p_file, FileAccess::READ); | 
					
						
							| 
									
										
										
										
											2022-03-23 11:08:58 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(file.is_null(), "Cannot open file '" + p_file + "'."); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | #ifdef THEORA_USE_THREAD_STREAMING
 | 
					
						
							|  |  |  | 	thread_exit = false; | 
					
						
							|  |  |  | 	thread_eof = false; | 
					
						
							|  |  |  | 	//pre-fill buffer
 | 
					
						
							|  |  |  | 	int to_read = ring_buffer.space_left(); | 
					
						
							| 
									
										
										
										
											2019-03-26 18:51:13 +01:00
										 |  |  | 	uint64_t read = file->get_buffer(read_buffer.ptr(), to_read); | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | 	ring_buffer.write(read_buffer.ptr(), read); | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-19 13:29:41 +01:00
										 |  |  | 	thread.start(_streaming_thread, this); | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ogg_sync_init(&oy); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* init supporting Vorbis structures needed in header parsing */ | 
					
						
							|  |  |  | 	vorbis_info_init(&vi); | 
					
						
							|  |  |  | 	vorbis_comment_init(&vc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* init supporting Theora structures needed in header parsing */ | 
					
						
							|  |  |  | 	th_comment_init(&tc); | 
					
						
							|  |  |  | 	th_info_init(&ti); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 17:58:17 -03:00
										 |  |  | 	theora_eos = false; | 
					
						
							|  |  |  | 	vorbis_eos = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	/* Ogg file open; parse the headers */ | 
					
						
							|  |  |  | 	/* Only interested in Vorbis/Theora streams */ | 
					
						
							|  |  |  | 	int stateflag = 0; | 
					
						
							| 
									
										
										
										
											2015-10-13 01:17:54 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-17 09:46:08 -03:00
										 |  |  | 	int audio_track_skip = audio_track; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	while (!stateflag) { | 
					
						
							|  |  |  | 		int ret = buffer_data(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (ret == 0) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		while (ogg_sync_pageout(&oy, &og) > 0) { | 
					
						
							|  |  |  | 			ogg_stream_state test; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/* is this a mandated initial header? If not, stop parsing */ | 
					
						
							|  |  |  | 			if (!ogg_page_bos(&og)) { | 
					
						
							|  |  |  | 				/* don't leak the page; get it into the appropriate stream */ | 
					
						
							|  |  |  | 				queue_page(&og); | 
					
						
							|  |  |  | 				stateflag = 1; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			ogg_stream_init(&test, ogg_page_serialno(&og)); | 
					
						
							|  |  |  | 			ogg_stream_pagein(&test, &og); | 
					
						
							|  |  |  | 			ogg_stream_packetout(&test, &op); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/* identify the codec: try theora */ | 
					
						
							|  |  |  | 			if (!theora_p && th_decode_headerin(&ti, &tc, &ts, &op) >= 0) { | 
					
						
							|  |  |  | 				/* it is theora */ | 
					
						
							| 
									
										
										
										
											2021-04-27 16:19:21 +02:00
										 |  |  | 				memcpy(&to, &test, sizeof(test)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				theora_p = 1; | 
					
						
							|  |  |  | 			} else if (!vorbis_p && vorbis_synthesis_headerin(&vi, &vc, &op) >= 0) { | 
					
						
							|  |  |  | 				/* it is vorbis */ | 
					
						
							| 
									
										
										
										
											2015-11-17 09:46:08 -03:00
										 |  |  | 				if (audio_track_skip) { | 
					
						
							|  |  |  | 					vorbis_info_clear(&vi); | 
					
						
							|  |  |  | 					vorbis_comment_clear(&vc); | 
					
						
							|  |  |  | 					ogg_stream_clear(&test); | 
					
						
							|  |  |  | 					vorbis_info_init(&vi); | 
					
						
							|  |  |  | 					vorbis_comment_init(&vc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					audio_track_skip--; | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2021-04-27 16:19:21 +02:00
										 |  |  | 					memcpy(&vo, &test, sizeof(test)); | 
					
						
							| 
									
										
										
										
											2015-11-17 09:46:08 -03:00
										 |  |  | 					vorbis_p = 1; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} else { | 
					
						
							|  |  |  | 				/* whatever it is, we don't care about it */ | 
					
						
							|  |  |  | 				ogg_stream_clear(&test); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		/* fall through to non-bos page parsing */ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* we're expecting more header packets. */ | 
					
						
							|  |  |  | 	while ((theora_p && theora_p < 3) || (vorbis_p && vorbis_p < 3)) { | 
					
						
							| 
									
										
										
										
											2023-02-25 21:07:24 -03:00
										 |  |  | 		int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		/* look for further theora headers */ | 
					
						
							| 
									
										
										
										
											2023-02-25 21:07:24 -03:00
										 |  |  | 		if (theora_p && theora_p < 3) { | 
					
						
							|  |  |  | 			ret = ogg_stream_packetout(&to, &op); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 		while (theora_p && theora_p < 3 && ret) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			if (ret < 0) { | 
					
						
							| 
									
										
										
										
											2018-04-02 16:47:06 -04:00
										 |  |  | 				fprintf(stderr, "Error parsing Theora stream headers; corrupt stream?\n"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				clear(); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (!th_decode_headerin(&ti, &tc, &ts, &op)) { | 
					
						
							| 
									
										
										
										
											2018-04-02 16:47:06 -04:00
										 |  |  | 				fprintf(stderr, "Error parsing Theora stream headers; corrupt stream?\n"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				clear(); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 			ret = ogg_stream_packetout(&to, &op); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			theora_p++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* look for more vorbis header packets */ | 
					
						
							| 
									
										
										
										
											2023-02-25 21:07:24 -03:00
										 |  |  | 		if (vorbis_p && vorbis_p < 3) { | 
					
						
							|  |  |  | 			ret = ogg_stream_packetout(&vo, &op); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 		while (vorbis_p && vorbis_p < 3 && ret) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			if (ret < 0) { | 
					
						
							|  |  |  | 				fprintf(stderr, "Error parsing Vorbis stream headers; corrupt stream?\n"); | 
					
						
							|  |  |  | 				clear(); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			ret = vorbis_synthesis_headerin(&vi, &vc, &op); | 
					
						
							|  |  |  | 			if (ret) { | 
					
						
							|  |  |  | 				fprintf(stderr, "Error parsing Vorbis stream headers; corrupt stream?\n"); | 
					
						
							|  |  |  | 				clear(); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			vorbis_p++; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (vorbis_p == 3) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 			ret = ogg_stream_packetout(&vo, &op); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* The header pages/packets will arrive before anything else we
 | 
					
						
							|  |  |  | 		care about, or the stream is not obeying spec */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (ogg_sync_pageout(&oy, &og) > 0) { | 
					
						
							|  |  |  | 			queue_page(&og); /* demux into the appropriate stream */ | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			int ret2 = buffer_data(); /* someone needs more data */ | 
					
						
							|  |  |  | 			if (ret2 == 0) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				fprintf(stderr, "End of file while searching for codec headers.\n"); | 
					
						
							|  |  |  | 				clear(); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-07 10:17:32 +02:00
										 |  |  | 	/* And now we have it all. Initialize decoders. */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (theora_p) { | 
					
						
							|  |  |  | 		td = th_decode_alloc(&ti, ts); | 
					
						
							|  |  |  | 		px_fmt = ti.pixel_fmt; | 
					
						
							|  |  |  | 		switch (ti.pixel_fmt) { | 
					
						
							| 
									
										
										
										
											2018-04-02 16:47:06 -04:00
										 |  |  | 			case TH_PF_420: | 
					
						
							|  |  |  | 				//printf(" 4:2:0 video\n");
 | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case TH_PF_422: | 
					
						
							|  |  |  | 				//printf(" 4:2:2 video\n");
 | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case TH_PF_444: | 
					
						
							|  |  |  | 				//printf(" 4:4:4 video\n");
 | 
					
						
							|  |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			case TH_PF_RSVD: | 
					
						
							|  |  |  | 			default: | 
					
						
							|  |  |  | 				printf(" video\n  (UNKNOWN Chroma sampling!)\n"); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		th_decode_ctl(td, TH_DECCTL_GET_PPLEVEL_MAX, &pp_level_max, | 
					
						
							|  |  |  | 				sizeof(pp_level_max)); | 
					
						
							| 
									
										
										
										
											2015-12-06 20:22:45 -03:00
										 |  |  | 		pp_level = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		th_decode_ctl(td, TH_DECCTL_SET_PPLEVEL, &pp_level, sizeof(pp_level)); | 
					
						
							|  |  |  | 		pp_inc = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int w; | 
					
						
							|  |  |  | 		int h; | 
					
						
							| 
									
										
										
										
											2018-09-26 16:35:32 +02:00
										 |  |  | 		w = ((ti.pic_x + ti.frame_width + 1) & ~1) - (ti.pic_x & ~1); | 
					
						
							|  |  |  | 		h = ((ti.pic_y + ti.frame_height + 1) & ~1) - (ti.pic_y & ~1); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		size.x = w; | 
					
						
							|  |  |  | 		size.y = h; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-22 20:06:19 +02:00
										 |  |  | 		Ref<Image> img = Image::create_empty(w, h, false, Image::FORMAT_RGBA8); | 
					
						
							| 
									
										
										
										
											2022-05-04 01:49:20 +02:00
										 |  |  | 		texture->set_image(img); | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		/* tear down the partial theora setup */ | 
					
						
							|  |  |  | 		th_info_clear(&ti); | 
					
						
							|  |  |  | 		th_comment_clear(&tc); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	th_setup_free(ts); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (vorbis_p) { | 
					
						
							|  |  |  | 		vorbis_synthesis_init(&vd, &vi); | 
					
						
							|  |  |  | 		vorbis_block_init(&vd, &vb); | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		//_setup(vi.channels, vi.rate);
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		/* tear down the partial vorbis setup */ | 
					
						
							|  |  |  | 		vorbis_info_clear(&vi); | 
					
						
							|  |  |  | 		vorbis_comment_clear(&vc); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	playing = false; | 
					
						
							|  |  |  | 	buffering = true; | 
					
						
							|  |  |  | 	time = 0; | 
					
						
							| 
									
										
										
										
											2015-11-03 09:30:28 -03:00
										 |  |  | 	audio_frames_wrote = 0; | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-22 08:54:15 -05:00
										 |  |  | double VideoStreamPlaybackTheora::get_time() const { | 
					
						
							| 
									
										
										
										
											2020-02-07 21:01:03 +01:00
										 |  |  | 	// FIXME: AudioServer output latency was fixed in af9bb0e, previously it used to
 | 
					
						
							|  |  |  | 	// systematically return 0. Now that it gives a proper latency, it broke this
 | 
					
						
							|  |  |  | 	// code where the delay compensation likely never really worked.
 | 
					
						
							|  |  |  | 	return time - /* AudioServer::get_singleton()->get_output_latency() - */ delay_compensation; | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | Ref<Texture2D> VideoStreamPlaybackTheora::get_texture() const { | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	return texture; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-22 08:54:15 -05:00
										 |  |  | void VideoStreamPlaybackTheora::update(double p_delta) { | 
					
						
							| 
									
										
										
										
											2022-03-23 11:08:58 +02:00
										 |  |  | 	if (file.is_null()) { | 
					
						
							| 
									
										
										
										
											2016-01-24 01:59:55 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-24 01:59:55 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-15 23:39:36 -03:00
										 |  |  | 	if (!playing || paused) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		//printf("not playing\n");
 | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | #ifdef THEORA_USE_THREAD_STREAMING
 | 
					
						
							|  |  |  | 	thread_sem->post(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	time += p_delta; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-25 00:28:03 -03:00
										 |  |  | 	if (videobuf_time > get_time()) { | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		return; //no new frames need to be produced
 | 
					
						
							| 
									
										
										
										
											2015-11-25 00:28:03 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	bool frame_done = false; | 
					
						
							| 
									
										
										
										
											2016-06-15 15:31:32 +02:00
										 |  |  | 	bool audio_done = !vorbis_p; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 17:58:17 -03:00
										 |  |  | 	while (!frame_done || (!audio_done && !vorbis_eos)) { | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		//a frame needs to be produced
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		ogg_packet op; | 
					
						
							| 
									
										
										
										
											2015-12-15 09:17:32 -03:00
										 |  |  | 		bool no_theora = false; | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 		bool buffer_full = false; | 
					
						
							| 
									
										
										
										
											2015-12-15 09:17:32 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 		while (vorbis_p && !audio_done && !buffer_full) { | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 			int ret; | 
					
						
							|  |  |  | 			float **pcm; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/* if there's pending, decoded audio, grab it */ | 
					
						
							| 
									
										
										
										
											2017-09-06 23:50:18 +02:00
										 |  |  | 			ret = vorbis_synthesis_pcmout(&vd, &pcm); | 
					
						
							|  |  |  | 			if (ret > 0) { | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 				const int AUXBUF_LEN = 4096; | 
					
						
							|  |  |  | 				int to_read = ret; | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 				float aux_buffer[AUXBUF_LEN]; | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				while (to_read) { | 
					
						
							|  |  |  | 					int m = MIN(AUXBUF_LEN / vi.channels, to_read); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					int count = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					for (int j = 0; j < m; j++) { | 
					
						
							|  |  |  | 						for (int i = 0; i < vi.channels; i++) { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 							aux_buffer[count++] = pcm[i][j]; | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if (mix_callback) { | 
					
						
							|  |  |  | 						int mixed = mix_callback(mix_udata, aux_buffer, m); | 
					
						
							|  |  |  | 						to_read -= mixed; | 
					
						
							|  |  |  | 						if (mixed != m) { //could mix no more
 | 
					
						
							|  |  |  | 							buffer_full = true; | 
					
						
							|  |  |  | 							break; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						to_read -= m; //just pretend we sent the audio
 | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-27 11:24:41 +02:00
										 |  |  | 				vorbis_synthesis_read(&vd, ret - to_read); | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-03 09:30:28 -03:00
										 |  |  | 				audio_frames_wrote += ret - to_read; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 			} else { | 
					
						
							|  |  |  | 				/* no pending audio; is there a pending packet to decode? */ | 
					
						
							|  |  |  | 				if (ogg_stream_packetout(&vo, &op) > 0) { | 
					
						
							|  |  |  | 					if (vorbis_synthesis(&vb, &op) == 0) { /* test for success! */ | 
					
						
							|  |  |  | 						vorbis_synthesis_blockin(&vd, &vb); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} else { /* we need more data; break out to suck in another page */ | 
					
						
							|  |  |  | 					break; | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-03 09:30:28 -03:00
										 |  |  | 			audio_done = videobuf_time < (audio_frames_wrote / float(vi.rate)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (buffer_full) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		while (theora_p && !frame_done) { | 
					
						
							|  |  |  | 			/* theora is one in, one out... */ | 
					
						
							|  |  |  | 			if (ogg_stream_packetout(&to, &op) > 0) { | 
					
						
							|  |  |  | 				/*HACK: This should be set after a seek or a gap, but we might not have
 | 
					
						
							|  |  |  | 				a granulepos for the first packet (we only have them for the last | 
					
						
							|  |  |  | 				packet on a page), so we just set it as often as we get it. | 
					
						
							|  |  |  | 				To do this right, we should back-track from the last packet on the | 
					
						
							|  |  |  | 				page and compute the correct granulepos for the first packet after | 
					
						
							|  |  |  | 				a seek or a gap.*/ | 
					
						
							|  |  |  | 				if (op.granulepos >= 0) { | 
					
						
							|  |  |  | 					th_decode_ctl(td, TH_DECCTL_SET_GRANPOS, &op.granulepos, | 
					
						
							|  |  |  | 							sizeof(op.granulepos)); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				ogg_int64_t videobuf_granulepos; | 
					
						
							|  |  |  | 				if (th_decode_packetin(td, &op, &videobuf_granulepos) == 0) { | 
					
						
							|  |  |  | 					videobuf_time = th_granule_time(td, videobuf_granulepos); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					//printf("frame time %f, play time %f, ready %i\n", (float)videobuf_time, get_time(), videobuf_ready);
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-07 10:17:32 +02:00
										 |  |  | 					/* is it already too old to be useful? This is only actually
 | 
					
						
							|  |  |  | 					 useful cosmetically after a SIGSTOP. Note that we have to | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 					 decode the frame even if we don't show it (for now) due to | 
					
						
							| 
									
										
										
										
											2021-06-07 10:17:32 +02:00
										 |  |  | 					 keyframing. Soon enough libtheora will be able to deal | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 					 with non-keyframe seeks.  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-25 00:28:03 -03:00
										 |  |  | 					if (videobuf_time >= get_time()) { | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 						frame_done = true; | 
					
						
							| 
									
										
										
										
											2015-11-25 00:28:03 -03:00
										 |  |  | 					} else { | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 						/*If we are too slow, reduce the pp level.*/ | 
					
						
							|  |  |  | 						pp_inc = pp_level > 0 ? -1 : 0; | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-25 00:28:03 -03:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2015-12-15 09:17:32 -03:00
										 |  |  | 				no_theora = true; | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2015-11-25 00:28:03 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-01-23 17:58:17 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | #ifdef THEORA_USE_THREAD_STREAMING
 | 
					
						
							| 
									
										
										
										
											2022-03-23 11:08:58 +02:00
										 |  |  | 		if (file.is_valid() && thread_eof && no_theora && theora_eos && ring_buffer.data_left() == 0) { | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2022-03-23 11:08:58 +02:00
										 |  |  | 		if (file.is_valid() && /*!videobuf_ready && */ no_theora && theora_eos) { | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-04-02 16:47:06 -04:00
										 |  |  | 			//printf("video done, stopping\n");
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 			stop(); | 
					
						
							|  |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-03 09:30:28 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (!frame_done || !audio_done) { | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 			//what's the point of waiting for audio to grab a page?
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 			buffer_data(); | 
					
						
							|  |  |  | 			while (ogg_sync_pageout(&oy, &og) > 0) { | 
					
						
							|  |  |  | 				queue_page(&og); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-27 21:07:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		/* If playback has begun, top audio buffer off immediately. */ | 
					
						
							|  |  |  | 		//if(stateflag) audio_write_nonblocking();
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		/* are we at or past time for this video frame? */ | 
					
						
							|  |  |  | 		if (videobuf_ready && videobuf_time <= get_time()) { | 
					
						
							|  |  |  | 			//video_write();
 | 
					
						
							|  |  |  | 			//videobuf_ready=0;
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			//printf("frame at %f not ready (time %f), ready %i\n", (float)videobuf_time, get_time(), videobuf_ready);
 | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-22 08:54:15 -05:00
										 |  |  | 		double tdiff = videobuf_time - get_time(); | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		/*If we have lots of extra time, increase the post-processing level.*/ | 
					
						
							|  |  |  | 		if (tdiff > ti.fps_denominator * 0.25 / ti.fps_numerator) { | 
					
						
							|  |  |  | 			pp_inc = pp_level < pp_level_max ? 1 : 0; | 
					
						
							|  |  |  | 		} else if (tdiff < ti.fps_denominator * 0.05 / ti.fps_numerator) { | 
					
						
							|  |  |  | 			pp_inc = pp_level > 0 ? -1 : 0; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	video_write(); | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | void VideoStreamPlaybackTheora::play() { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!playing) { | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		time = 0; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | 		stop(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	playing = true; | 
					
						
							| 
									
										
										
										
											2022-10-18 16:43:37 +02:00
										 |  |  | 	delay_compensation = GLOBAL_GET("audio/video/video_delay_compensation_ms"); | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	delay_compensation /= 1000.0; | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | void VideoStreamPlaybackTheora::stop() { | 
					
						
							|  |  |  | 	if (playing) { | 
					
						
							|  |  |  | 		clear(); | 
					
						
							|  |  |  | 		set_file(file_name); //reset
 | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	playing = false; | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	time = 0; | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | bool VideoStreamPlaybackTheora::is_playing() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return playing; | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | void VideoStreamPlaybackTheora::set_paused(bool p_paused) { | 
					
						
							| 
									
										
										
										
											2015-12-15 23:39:36 -03:00
										 |  |  | 	paused = p_paused; | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | bool VideoStreamPlaybackTheora::is_paused() const { | 
					
						
							| 
									
										
										
										
											2015-12-15 23:39:36 -03:00
										 |  |  | 	return paused; | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-22 08:54:15 -05:00
										 |  |  | double VideoStreamPlaybackTheora::get_length() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-22 08:54:15 -05:00
										 |  |  | double VideoStreamPlaybackTheora::get_playback_position() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return get_time(); | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-22 08:54:15 -05:00
										 |  |  | void VideoStreamPlaybackTheora::seek(double p_time) { | 
					
						
							| 
									
										
										
										
											2022-03-09 13:56:14 +01:00
										 |  |  | 	WARN_PRINT_ONCE("Seeking in Theora videos is not implemented yet (it's only supported for GDExtension-provided video streams)."); | 
					
						
							| 
									
										
										
										
											2020-05-19 11:24:58 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | int VideoStreamPlaybackTheora::get_channels() const { | 
					
						
							|  |  |  | 	return vi.channels; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void VideoStreamPlaybackTheora::set_audio_track(int p_idx) { | 
					
						
							| 
									
										
										
										
											2015-10-13 01:17:54 -03:00
										 |  |  | 	audio_track = p_idx; | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int VideoStreamPlaybackTheora::get_mix_rate() const { | 
					
						
							|  |  |  | 	return vi.rate; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | #ifdef THEORA_USE_THREAD_STREAMING
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void VideoStreamPlaybackTheora::_streaming_thread(void *ud) { | 
					
						
							| 
									
										
										
										
											2022-04-05 13:40:26 +03:00
										 |  |  | 	VideoStreamPlaybackTheora *vs = static_cast<VideoStreamPlaybackTheora *>(ud); | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	while (!vs->thread_exit) { | 
					
						
							|  |  |  | 		//just fill back the buffer
 | 
					
						
							|  |  |  | 		if (!vs->thread_eof) { | 
					
						
							|  |  |  | 			int to_read = vs->ring_buffer.space_left(); | 
					
						
							| 
									
										
										
										
											2019-03-26 18:51:13 +01:00
										 |  |  | 			if (to_read > 0) { | 
					
						
							|  |  |  | 				uint64_t read = vs->file->get_buffer(vs->read_buffer.ptr(), to_read); | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | 				vs->ring_buffer.write(vs->read_buffer.ptr(), read); | 
					
						
							|  |  |  | 				vs->thread_eof = vs->file->eof_reached(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		vs->thread_sem->wait(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | VideoStreamPlaybackTheora::VideoStreamPlaybackTheora() { | 
					
						
							|  |  |  | 	texture = Ref<ImageTexture>(memnew(ImageTexture)); | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef THEORA_USE_THREAD_STREAMING
 | 
					
						
							|  |  |  | 	int rb_power = nearest_shift(RB_SIZE_KB * 1024); | 
					
						
							|  |  |  | 	ring_buffer.resize(rb_power); | 
					
						
							|  |  |  | 	read_buffer.resize(RB_SIZE_KB * 1024); | 
					
						
							|  |  |  | 	thread_sem = Semaphore::create(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-09-28 15:59:08 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | VideoStreamPlaybackTheora::~VideoStreamPlaybackTheora() { | 
					
						
							| 
									
										
										
										
											2015-12-05 23:16:41 -03:00
										 |  |  | #ifdef THEORA_USE_THREAD_STREAMING
 | 
					
						
							|  |  |  | 	memdelete(thread_sem); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	clear(); | 
					
						
							| 
									
										
										
										
											2022-07-29 00:23:11 +02:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2018-07-03 19:22:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-29 00:23:11 +02:00
										 |  |  | void VideoStreamTheora::_bind_methods() {} | 
					
						
							| 
									
										
										
										
											2018-07-03 19:22:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-03 01:43:50 +02:00
										 |  |  | Ref<Resource> ResourceFormatLoaderTheora::load(const String &p_path, const String &p_original_path, Error *r_error, bool p_use_sub_threads, float *r_progress, CacheMode p_cache_mode) { | 
					
						
							| 
									
										
										
										
											2022-03-23 11:08:58 +02:00
										 |  |  | 	Ref<FileAccess> f = FileAccess::open(p_path, FileAccess::READ); | 
					
						
							|  |  |  | 	if (f.is_null()) { | 
					
						
							| 
									
										
										
										
											2018-07-03 19:22:35 +02:00
										 |  |  | 		if (r_error) { | 
					
						
							|  |  |  | 			*r_error = ERR_CANT_OPEN; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-05-03 01:43:50 +02:00
										 |  |  | 		return Ref<Resource>(); | 
					
						
							| 
									
										
										
										
											2018-07-03 19:22:35 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VideoStreamTheora *stream = memnew(VideoStreamTheora); | 
					
						
							|  |  |  | 	stream->set_file(p_path); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<VideoStreamTheora> ogv_stream = Ref<VideoStreamTheora>(stream); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (r_error) { | 
					
						
							|  |  |  | 		*r_error = OK; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ogv_stream; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ResourceFormatLoaderTheora::get_recognized_extensions(List<String> *p_extensions) const { | 
					
						
							|  |  |  | 	p_extensions->push_back("ogv"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ResourceFormatLoaderTheora::handles_type(const String &p_type) const { | 
					
						
							|  |  |  | 	return ClassDB::is_parent_class(p_type, "VideoStream"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String ResourceFormatLoaderTheora::get_resource_type(const String &p_path) const { | 
					
						
							|  |  |  | 	String el = p_path.get_extension().to_lower(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (el == "ogv") { | 
					
						
							| 
									
										
										
										
											2018-07-03 19:22:35 +02:00
										 |  |  | 		return "VideoStreamTheora"; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-03 19:22:35 +02:00
										 |  |  | 	return ""; | 
					
						
							|  |  |  | } |