You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Patch VideoStreamPlaybackTheora::set_file to only look for header packets of one stream type
This commit is contained in:
@@ -251,8 +251,12 @@ void VideoStreamPlaybackTheora::set_file(const String &p_file) {
|
|||||||
|
|
||||||
/* we're expecting more header packets. */
|
/* we're expecting more header packets. */
|
||||||
while ((theora_p && theora_p < 3) || (vorbis_p && vorbis_p < 3)) {
|
while ((theora_p && theora_p < 3) || (vorbis_p && vorbis_p < 3)) {
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
/* look for further theora headers */
|
/* look for further theora headers */
|
||||||
int ret = ogg_stream_packetout(&to, &op);
|
if (theora_p && theora_p < 3) {
|
||||||
|
ret = ogg_stream_packetout(&to, &op);
|
||||||
|
}
|
||||||
while (theora_p && theora_p < 3 && ret) {
|
while (theora_p && theora_p < 3 && ret) {
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
fprintf(stderr, "Error parsing Theora stream headers; corrupt stream?\n");
|
fprintf(stderr, "Error parsing Theora stream headers; corrupt stream?\n");
|
||||||
@@ -269,7 +273,9 @@ void VideoStreamPlaybackTheora::set_file(const String &p_file) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* look for more vorbis header packets */
|
/* look for more vorbis header packets */
|
||||||
ret = ogg_stream_packetout(&vo, &op);
|
if (vorbis_p && vorbis_p < 3) {
|
||||||
|
ret = ogg_stream_packetout(&vo, &op);
|
||||||
|
}
|
||||||
while (vorbis_p && vorbis_p < 3 && ret) {
|
while (vorbis_p && vorbis_p < 3 && ret) {
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
fprintf(stderr, "Error parsing Vorbis stream headers; corrupt stream?\n");
|
fprintf(stderr, "Error parsing Vorbis stream headers; corrupt stream?\n");
|
||||||
|
|||||||
Reference in New Issue
Block a user