Mercurial > mplayer.hg
diff libmpeg2/header.c @ 31293:a51baa308479
libmpeg2: Remove local quantizer scale changes related to postprocessing.
Local changes to our locally forked library copy were incompatible with the
upstream version and prevented (easily) using the upstream version instead
of the forked copy. The md5sums of the decoded frames do not change for one
tested sample, so apparently the code is ineffectual and thus, after some
discussion with Luca, I decided that the changes are not worth keeping.
author | diego |
---|---|
date | Thu, 10 Jun 2010 09:52:30 +0000 |
parents | 020ae1402728 |
children | 60709ef498be |
line wrap: on
line diff
--- a/libmpeg2/header.c Wed Jun 09 21:13:03 2010 +0000 +++ b/libmpeg2/header.c Thu Jun 10 09:52:30 2010 +0000 @@ -20,10 +20,6 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - * Modified for use with MPlayer, see libmpeg2_changes.diff for the exact changes. - * detailed changelog at http://svn.mplayerhq.hu/mplayer/trunk/ - * $Id$ */ #include "config.h" @@ -876,7 +872,6 @@ mpeg2dec->scaled[idx] = decoder->q_scale_type; for (i = 0; i < 32; i++) { k = decoder->q_scale_type ? non_linear_scale[i] : (i << 1); - decoder->quantizer_scales[i] = k; for (j = 0; j < 64; j++) decoder->quantizer_prescale[idx][i][j] = k * mpeg2dec->quantizer_matrix[idx][j];