From d081fd728c6bc8d27e1538ce632a0028d6e19bee Mon Sep 17 00:00:00 2001 From: DRC Date: Sun, 18 Aug 2013 09:15:37 +0000 Subject: [PATCH] Add note regarding the fact that 4:4:0 lacks full SIMD support; Add an option for benchmarking 4:4:0 subsampling in tjbench. git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1009 632fc199-4ca6-4c93-a231-07263d6284db --- doc/html/annotated.html | 2 +- doc/html/classes.html | 2 +- doc/html/functions.html | 2 +- doc/html/functions_vars.html | 2 +- doc/html/group___turbo_j_p_e_g.html | 4 ++-- doc/html/index.html | 2 +- doc/html/modules.html | 2 +- doc/html/structtjregion.html | 2 +- doc/html/structtjscalingfactor.html | 2 +- doc/html/structtjtransform.html | 2 +- tjbench.c | 8 +++++--- turbojpeg.h | 2 ++ 12 files changed, 18 insertions(+), 14 deletions(-) diff --git a/doc/html/annotated.html b/doc/html/annotated.html index 4c81fad..71f3746 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 4494e96..4d0fc0b 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 8b8af0a..015c728 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 b2a8b83..dd0ce39 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 9c460bc..854f74d 100644 --- a/doc/html/group___turbo_j_p_e_g.html +++ b/doc/html/group___turbo_j_p_e_g.html @@ -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.

+

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.

@@ -1694,7 +1694,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 4e1be5b..f208452 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 0cdd27a..8cc38e5 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 dfb3e4a..6637fbb 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 fba58ff..d44d336 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 d28a1af..9cf6562 100644 --- a/doc/html/structtjtransform.html +++ b/doc/html/structtjtransform.html @@ -203,7 +203,7 @@ Data Fields diff --git a/tjbench.c b/tjbench.c index 87b462f..105a4cc 100644 --- a/tjbench.c +++ b/tjbench.c @@ -1,5 +1,5 @@ /* - * Copyright (C)2009-2012 D. R. Commander. All Rights Reserved. + * Copyright (C)2009-2013 D. R. Commander. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -686,6 +686,7 @@ void usage(char *progname) printf(" codec\n"); printf("-accuratedct = Use the most accurate DCT/IDCT algorithms available in the\n"); printf(" underlying codec\n"); + printf("-440 = Test 4:4:0 chrominance subsampling instead of 4:2:2\n"); printf("-quiet = Output results in tabular rather than verbose format\n"); printf("-yuvencode = Encode RGB input as planar YUV rather than compressing as JPEG\n"); printf("-yuvdecode = Decode JPEG image to planar YUV rather than RGB\n"); @@ -719,7 +720,7 @@ int main(int argc, char *argv[]) { unsigned char *srcbuf=NULL; int w, h, i, j; int minqual=-1, maxqual=-1; char *temp; - int minarg=2; int retval=0; + int minarg=2, retval=0, do440=0; if((scalingfactors=tjGetScalingFactors(&nsf))==NULL || nsf==0) _throwtj("executing tjGetScalingFactors()"); @@ -810,6 +811,7 @@ int main(int argc, char *argv[]) printf("Using most accurate DCT/IDCT algorithm\n\n"); flags|=TJFLAG_ACCURATEDCT; } + if(!strcmp(argv[i], "-440")) do440=1; if(!strcasecmp(argv[i], "-rgb")) pf=TJPF_RGB; if(!strcasecmp(argv[i], "-rgbx")) pf=TJPF_RGBX; if(!strcasecmp(argv[i], "-bgr")) pf=TJPF_BGR; @@ -902,7 +904,7 @@ int main(int argc, char *argv[]) dotest(srcbuf, w, h, TJ_420, i, argv[1]); printf("\n"); for(i=maxqual; i>=minqual; i--) - dotest(srcbuf, w, h, TJ_422, i, argv[1]); + dotest(srcbuf, w, h, do440? TJSAMP_440:TJ_422, i, argv[1]); printf("\n"); for(i=maxqual; i>=minqual; i--) dotest(srcbuf, w, h, TJ_444, i, argv[1]); diff --git a/turbojpeg.h b/turbojpeg.h index c7a29a0..3cd4a31 100644 --- a/turbojpeg.h +++ b/turbojpeg.h @@ -85,6 +85,8 @@ 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. */ TJSAMP_440 }; -- 2.40.0