diff --git a/doc/html/annotated.html b/doc/html/annotated.html index bc498c3d..be64ad18 100644 --- a/doc/html/annotated.html +++ b/doc/html/annotated.html @@ -95,7 +95,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); diff --git a/doc/html/classes.html b/doc/html/classes.html index 78b87720..9f240d51 100644 --- a/doc/html/classes.html +++ b/doc/html/classes.html @@ -97,7 +97,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); diff --git a/doc/html/functions.html b/doc/html/functions.html index e75c84e7..734107a9 100644 --- a/doc/html/functions.html +++ b/doc/html/functions.html @@ -125,7 +125,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); diff --git a/doc/html/functions_vars.html b/doc/html/functions_vars.html index b0eefd72..9dbe365a 100644 --- a/doc/html/functions_vars.html +++ b/doc/html/functions_vars.html @@ -125,7 +125,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); diff --git a/doc/html/group___turbo_j_p_e_g.html b/doc/html/group___turbo_j_p_e_g.html index 29f51dc0..ac088f88 100644 --- a/doc/html/group___turbo_j_p_e_g.html +++ b/doc/html/group___turbo_j_p_e_g.html @@ -345,7 +345,7 @@ Variables

Use the most accurate DCT/IDCT algorithm available in the underlying codec.

-

The default if this flag is not specified is implementation-specific. The libjpeg implementation, for example, uses the fast algorithm by default when compressing, because this has been shown to have only a very slight effect on accuracy, but it uses the accurate algorithm when decompressing, because this has been shown to have a larger effect.

+

The default if this flag is not specified is implementation-specific. For example, the implementation of TurboJPEG for libjpeg[-turbo] uses the fast algorithm by default when compressing, because this has been shown to have only a very slight effect on accuracy, but it uses the accurate algorithm when decompressing, because this has been shown to have a larger effect.

@@ -374,7 +374,7 @@ Variables

Use the fastest DCT/IDCT algorithm available in the underlying codec.

-

The default if this flag is not specified is implementation-specific. The libjpeg implementation, for example, uses the fast algorithm by default when compressing, because this has been shown to have only a very slight effect on accuracy, but it uses the accurate algorithm when decompressing, because this has been shown to have a larger effect.

+

The default if this flag is not specified is implementation-specific. For example, the implementation of TurboJPEG for libjpeg[-turbo] uses the fast algorithm by default when compressing, because this has been shown to have only a very slight effect on accuracy, but it uses the accurate algorithm when decompressing, because this has been shown to have a larger effect.

@@ -704,7 +704,7 @@ Variables TJSAMP_440 

4:4:0 chrominance subsampling.

-

The JPEG or YUV image will contain one chrominance component for every 1x2 block of pixels in the source image. Note that 4:4:0 subsampling is not fully accelerated in the libjpeg-turbo implementation of TurboJPEG.

+

The JPEG or YUV image will contain one chrominance component for every 1x2 block of pixels in the source image. Note that 4:4:0 subsampling is not fully accelerated in libjpeg-turbo.

@@ -1659,7 +1659,7 @@ If you choose option 1, dstSizes[i] should be set to the size of yo diff --git a/doc/html/index.html b/doc/html/index.html index 3c2a6622..351a4fe8 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -81,7 +81,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); diff --git a/doc/html/modules.html b/doc/html/modules.html index 3795ae87..6e849ead 100644 --- a/doc/html/modules.html +++ b/doc/html/modules.html @@ -86,7 +86,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); diff --git a/doc/html/structtjregion.html b/doc/html/structtjregion.html index e0a482a1..d29c7b3e 100644 --- a/doc/html/structtjregion.html +++ b/doc/html/structtjregion.html @@ -177,7 +177,7 @@ Data Fields diff --git a/doc/html/structtjscalingfactor.html b/doc/html/structtjscalingfactor.html index 002924b3..a35fd492 100644 --- a/doc/html/structtjscalingfactor.html +++ b/doc/html/structtjscalingfactor.html @@ -139,7 +139,7 @@ Data Fields diff --git a/doc/html/structtjtransform.html b/doc/html/structtjtransform.html index 15554aee..3d6b90dc 100644 --- a/doc/html/structtjtransform.html +++ b/doc/html/structtjtransform.html @@ -203,7 +203,7 @@ Data Fields diff --git a/turbojpeg.h b/turbojpeg.h index 1d94e91c..02f3a837 100644 --- a/turbojpeg.h +++ b/turbojpeg.h @@ -85,8 +85,7 @@ enum TJSAMP /** * 4:4:0 chrominance subsampling. The JPEG or YUV image will contain one * chrominance component for every 1x2 block of pixels in the source image. - * Note that 4:4:0 subsampling is not fully accelerated in the libjpeg-turbo - * implementation of TurboJPEG. + * Note that 4:4:0 subsampling is not fully accelerated in libjpeg-turbo. */ TJSAMP_440 }; @@ -265,20 +264,20 @@ static const int tjPixelSize[TJ_NUMPF] = {3, 3, 4, 4, 4, 4, 1, 4, 4, 4, 4}; #define TJFLAG_NOREALLOC 1024 /** * Use the fastest DCT/IDCT algorithm available in the underlying codec. The - * default if this flag is not specified is implementation-specific. The - * libjpeg implementation, for example, uses the fast algorithm by default when - * compressing, because this has been shown to have only a very slight effect - * on accuracy, but it uses the accurate algorithm when decompressing, because - * this has been shown to have a larger effect. + * default if this flag is not specified is implementation-specific. For + * example, the implementation of TurboJPEG for libjpeg[-turbo] uses the fast + * algorithm by default when compressing, because this has been shown to have + * only a very slight effect on accuracy, but it uses the accurate algorithm + * when decompressing, because this has been shown to have a larger effect. */ #define TJFLAG_FASTDCT 2048 /** * Use the most accurate DCT/IDCT algorithm available in the underlying codec. - * The default if this flag is not specified is implementation-specific. The - * libjpeg implementation, for example, uses the fast algorithm by default when - * compressing, because this has been shown to have only a very slight effect - * on accuracy, but it uses the accurate algorithm when decompressing, because - * this has been shown to have a larger effect. + * The default if this flag is not specified is implementation-specific. For + * example, the implementation of TurboJPEG for libjpeg[-turbo] uses the fast + * algorithm by default when compressing, because this has been shown to have + * only a very slight effect on accuracy, but it uses the accurate algorithm + * when decompressing, because this has been shown to have a larger effect. */ #define TJFLAG_ACCURATEDCT 4096