Преглед изворни кода

Renamed YCrCbToRGBA to YCbCrToRGBA

Dominic Szablewski пре 12 година
родитељ
комит
f76aea03a1
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3 3
      jsmpg.js

+ 3 - 3
jsmpg.js Прегледај датотеку

339
 	this.buffer.rewind(32);
339
 	this.buffer.rewind(32);
340
 	
340
 	
341
 	
341
 	
342
-	this.YCrCbToRGBA();
342
+	this.YCbCrToRGBA();
343
 	this.canvasContext.putImageData(this.currentRGBA, 0, 0);
343
 	this.canvasContext.putImageData(this.currentRGBA, 0, 0);
344
 	
344
 	
345
 	// If this is a reference picutre then rotate the prediction pointers
345
 	// If this is a reference picutre then rotate the prediction pointers
353
 	}
353
 	}
354
 };
354
 };
355
 
355
 
356
-jsmpeg.prototype.YCrCbToRGBA = function() {	
356
+jsmpeg.prototype.YCbCrToRGBA = function() {	
357
 	var pY = this.currentY;
357
 	var pY = this.currentY;
358
-	var pCr = this.currentCr;
359
 	var pCb = this.currentCb;
358
 	var pCb = this.currentCb;
359
+	var pCr = this.currentCr;
360
 	var pRGBA = this.currentRGBA.data;
360
 	var pRGBA = this.currentRGBA.data;
361
 
361
 
362
 
362