Mercurial > mplayer.hg
view DOCS/xml/xsl/ldp-html-chunk.xsl @ 29929:49c6bb4f97aa
Fix mangling of 24-bit audio during channel reorder.
Only 1/3 of the samples in the buffer passed to reorder_channel_nch()
were being reordered. For 8-, 16-, and 32-bit audio, the buffers could
be treated as int8_t, int16_t, and int32_t respectively. 24-bit audio
was being processed as int8_t, requiring iteration over n_samples*3, not
n_samples.
author | tack |
---|---|
date | Sat, 28 Nov 2009 18:23:26 +0000 |
parents | 0f1b5b68af32 |
children |
line wrap: on
line source
<?xml version='1.0'?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0' xmlns="http://www.w3.org/TR/xhtml1/transitional" exclude-result-prefixes="#default"> <!-- $Id$ --> <!-- This stylesheet calls Norman Walsh's 'docbook.xsl' stylesheet and therefore generates MULTIPLE HTML FILES as output. --> <!-- Note the the *order* of the import statements below is important and should not be changed. --> <!-- Change this to the path to where you have installed Norman Walsh's XSL stylesheets --> <xsl:import href="/usr/share/sgml/docbook/xsl-stylesheets-1.60.1/html/chunk.xsl"/> <!-- Imports the common LDP customization layer. --> <xsl:import href="ldp-html-common.xsl"/> <!-- If there was some reason to override 'ldp-html-common.xsl' or to perform any other customizations that affect *only* the generation of multiple HTML files, those templates or parameters could be entered here. --> </xsl:stylesheet>