Parcourir la source

Source: Guard reference to `VideoFrame`. (#32301)

Michael Herzog il y a 1 mois
Parent
commit
2df1da2067
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/textures/Source.js

+ 1 - 1
src/textures/Source.js

@@ -88,7 +88,7 @@ class Source {
 
 			target.set( data.videoWidth, data.videoHeight, 0 );
 
-		} else if ( data instanceof VideoFrame ) {
+		} else if ( ( typeof VideoFrame !== 'undefined' ) && ( data instanceof VideoFrame ) ) {
 
 			target.set( data.displayHeight, data.displayWidth, 0 );
 

粤ICP备19079148号