diff options
author | Mike Melanson <mike@multimedia.cx> | 2003-11-01 01:25:44 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2003-11-01 01:25:44 +0000 |
commit | bfbddb073cc71f582241198f1565a31580210b20 (patch) | |
tree | fee8b7e7eb920763e3d6958bfbe61cba58a660b8 /src | |
parent | 2408a34f47034a4d1a6a20e2f46b40b282ee9cb2 (diff) | |
download | xine-lib-bfbddb073cc71f582241198f1565a31580210b20.tar.gz xine-lib-bfbddb073cc71f582241198f1565a31580210b20.tar.bz2 |
back out brightness patch
CVS patchset: 5659
CVS date: 2003/11/01 01:25:44
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-utils/xineutils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-utils/xineutils.h b/src/xine-utils/xineutils.h index 13cc7265f..bf8b59350 100644 --- a/src/xine-utils/xineutils.h +++ b/src/xine-utils/xineutils.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xineutils.h,v 1.60 2003/10/30 06:04:31 tmmm Exp $ + * $Id: xineutils.h,v 1.61 2003/11/01 01:25:44 tmmm Exp $ * */ #ifndef XINEUTILS_H @@ -785,7 +785,7 @@ extern void (*yuy2_to_yv12) #define COMPUTE_Y(r, g, b) \ (unsigned char) \ - (((y_r_table[r] + y_g_table[g] + y_b_table[b]) / SCALEFACTOR) + 16) + ((y_r_table[r] + y_g_table[g] + y_b_table[b]) / SCALEFACTOR) #define COMPUTE_U(r, g, b) \ (unsigned char) \ ((u_r_table[r] + u_g_table[g] + u_b_table[b]) / SCALEFACTOR + CENTERSAMPLE) |