Skip to content
This repository has been archived by the owner on Aug 22, 2022. It is now read-only.

Commit

Permalink
fix jpege encoder error
Browse files Browse the repository at this point in the history
  • Loading branch information
2betop committed Apr 2, 2014
1 parent f2e4eec commit 6cf9d71
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
10 changes: 5 additions & 5 deletions dist/webuploader.custom.js
Original file line number Diff line number Diff line change
Expand Up @@ -4250,8 +4250,8 @@
/* Pass 1: process rows. */
var dataOff=0;
var i;
const I8 = 8;
const I64 = 64;
var I8 = 8;
var I64 = 64;
for (i=0; i<I8; ++i)
{
d0 = data[dataOff];
Expand Down Expand Up @@ -4486,9 +4486,9 @@
var EOB = HTAC[0x00];
var M16zeroes = HTAC[0xF0];
var pos;
const I16 = 16;
const I63 = 63;
const I64 = 64;
var I16 = 16;
var I63 = 63;
var I64 = 64;
var DU_DCT = fDCTQuant(CDU, fdtbl);
//ZigZag reorder
for (var j=0;j<I64;++j) {
Expand Down
2 changes: 1 addition & 1 deletion dist/webuploader.custom.min.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/webuploader.js
Original file line number Diff line number Diff line change
Expand Up @@ -5146,8 +5146,8 @@
/* Pass 1: process rows. */
var dataOff=0;
var i;
const I8 = 8;
const I64 = 64;
var I8 = 8;
var I64 = 64;
for (i=0; i<I8; ++i)
{
d0 = data[dataOff];
Expand Down Expand Up @@ -5382,9 +5382,9 @@
var EOB = HTAC[0x00];
var M16zeroes = HTAC[0xF0];
var pos;
const I16 = 16;
const I63 = 63;
const I64 = 64;
var I16 = 16;
var I63 = 63;
var I64 = 64;
var DU_DCT = fDCTQuant(CDU, fdtbl);
//ZigZag reorder
for (var j=0;j<I64;++j) {
Expand Down
2 changes: 1 addition & 1 deletion dist/webuploader.min.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions jekyll/js/webuploader.js
Original file line number Diff line number Diff line change
Expand Up @@ -5146,8 +5146,8 @@
/* Pass 1: process rows. */
var dataOff=0;
var i;
const I8 = 8;
const I64 = 64;
var I8 = 8;
var I64 = 64;
for (i=0; i<I8; ++i)
{
d0 = data[dataOff];
Expand Down Expand Up @@ -5382,9 +5382,9 @@
var EOB = HTAC[0x00];
var M16zeroes = HTAC[0xF0];
var pos;
const I16 = 16;
const I63 = 63;
const I64 = 64;
var I16 = 16;
var I63 = 63;
var I64 = 64;
var DU_DCT = fDCTQuant(CDU, fdtbl);
//ZigZag reorder
for (var j=0;j<I64;++j) {
Expand Down
10 changes: 5 additions & 5 deletions src/runtime/html5/jpegencoder.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,8 @@ define([], function( require, exports, module ) {
/* Pass 1: process rows. */
var dataOff=0;
var i;
const I8 = 8;
const I64 = 64;
var I8 = 8;
var I64 = 64;
for (i=0; i<I8; ++i)
{
d0 = data[dataOff];
Expand Down Expand Up @@ -534,9 +534,9 @@ define([], function( require, exports, module ) {
var EOB = HTAC[0x00];
var M16zeroes = HTAC[0xF0];
var pos;
const I16 = 16;
const I63 = 63;
const I64 = 64;
var I16 = 16;
var I63 = 63;
var I64 = 64;
var DU_DCT = fDCTQuant(CDU, fdtbl);
//ZigZag reorder
for (var j=0;j<I64;++j) {
Expand Down

0 comments on commit 6cf9d71

Please sign in to comment.