[xiph-commits] r8818 -
trunk/oggdsf/src/lib/core/directshow/dsfAnxMux
illiminable at motherfish-iii.xiph.org
illiminable at motherfish-iii.xiph.org
Tue Feb 1 06:22:13 PST 2005
Author: illiminable
Date: 2005-02-01 06:22:10 -0800 (Tue, 01 Feb 2005)
New Revision: 8818
Modified:
trunk/oggdsf/src/lib/core/directshow/dsfAnxMux/AnxMuxInputPin.cpp
Log:
* Minor change to anx3 support
Modified: trunk/oggdsf/src/lib/core/directshow/dsfAnxMux/AnxMuxInputPin.cpp
===================================================================
--- trunk/oggdsf/src/lib/core/directshow/dsfAnxMux/AnxMuxInputPin.cpp 2005-02-01 13:12:56 UTC (rev 8817)
+++ trunk/oggdsf/src/lib/core/directshow/dsfAnxMux/AnxMuxInputPin.cpp 2005-02-01 14:22:10 UTC (rev 8818)
@@ -169,14 +169,16 @@
if (inMediaType->subtype == MEDIASUBTYPE_CMML) {
//CMML
sCMMLFormatBlock* locCMML = (sCMMLFormatBlock*)inMediaType->pbFormat;
- mMuxStream->setConversionParams(locCMML->granuleNumerator, locCMML->granuleDenominator, 10000000);
+
//ANX3::: 1 for anx 2, 2 for anx 3.
if ((mAnxVersionMajor == 3) && (mAnxVersionMinor == 0)) {
+ mMuxStream->setConversionParams(locCMML->granuleNumerator, locCMML->granuleDenominator, 10000000, 5);
//ZZZZZ:::: sould be 3
locNumHeaders = 3;
} else {
+ mMuxStream->setConversionParams(locCMML->granuleNumerator, locCMML->granuleDenominator, 10000000);
locNumHeaders = 1;
}
More information about the commits
mailing list