From 998eb2c1c9c97efe301c69b7173627a3d7563a58 Mon Sep 17 00:00:00 2001 From: rik Date: Thu, 24 Oct 2002 21:27:50 +0000 Subject: sync with libavcodec for unaccellerated dcts (sorry Felix, LIBAVCODEC_BUILD did not change, so also no backwards compatibility this time), and a long overdue copyright update git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7903 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/jpeg_enc.c | 6 +++--- libvo/jpeg_enc.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'libvo') diff --git a/libvo/jpeg_enc.c b/libvo/jpeg_enc.c index bffae9f3ac..3727aa28ca 100644 --- a/libvo/jpeg_enc.c +++ b/libvo/jpeg_enc.c @@ -2,7 +2,7 @@ * based on mjpeg code from ffmpeg. * * Copyright (c) 2002, Rik Snel - * Parts from ffmpeg Copyright (c) 2000, 2001 Gerard Lantau + * Parts from ffmpeg Copyright (c) 2000-2002 Fabrice Bellard * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -91,7 +91,7 @@ static void convert_matrix(MpegEncContext *s, int (*qmat)[64], * qscale * quant_matrix[i]) >= (1<<36)/249205025 * 3444240 >= (1<<36)/(aanscales[i] * * qscale * quant_matrix[i]) >= 275 */ - qmat[qscale][j] = (int)((UINT64_C(1) << (QMAT_SHIFT-3))/ + qmat[qscale][i] = (int)((UINT64_C(1) << (QMAT_SHIFT-3))/ (qscale * quant_matrix[j])); } } else if (s->fdct == fdct_ifast) { @@ -102,7 +102,7 @@ static void convert_matrix(MpegEncContext *s, int (*qmat)[64], /* (1<<36)/19952 >= (1<<36)/(aanscales[i] * qscale * quant_matrix[i]) >= (1<<36)/249205026 */ /* 3444240 >= (1<<36)/(aanscales[i] * qscale * quant_matrix[i]) >= 275 */ - qmat[qscale][j] = (int)((UINT64_C(1) << (QMAT_SHIFT + 11)) / + qmat[qscale][i] = (int)((UINT64_C(1) << (QMAT_SHIFT + 11)) / (aanscales[i] * qscale * quant_matrix[j])); } } else { diff --git a/libvo/jpeg_enc.h b/libvo/jpeg_enc.h index 43972d0835..27f1af6033 100644 --- a/libvo/jpeg_enc.h +++ b/libvo/jpeg_enc.h @@ -2,7 +2,7 @@ * based on mjpeg code from ffmpeg. * * Copyright (c) 2002, Rik Snel - * Parts from ffmpeg Copyright (c) 2000, 2001 Gerard Lantau + * Parts from ffmpeg Copyright (c) 2000-2002 Fabrice Bellard * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by -- cgit v1.2.3