Skip to content

Update jpeg_encoder_basic.js #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions jpeg_encoder_basic.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ function JPEGEncoder(quality) {
var UVTable = new Array(64);
var fdtbl_Y = new Array(64);
var fdtbl_UV = new Array(64);
var YDC_HT;
var UVDC_HT;
var YAC_HT;
var UVAC_HT;
var YDC_HT; //height
var UVDC_HT; //height
var YAC_HT; //height
var UVAC_HT; //height

var bitcode = new Array(65535);
var category = new Array(65535);
Expand Down Expand Up @@ -791,4 +791,4 @@ function example(quality){
var img = document.createElement('img');
img.src = jpegURI;
document.body.appendChild(img);
}*/
}*/