Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrevil_xxl <drevil_xxl@users.sourceforge.net>2009-10-09 22:16:31 +0400
committerdrevil_xxl <drevil_xxl@users.sourceforge.net>2009-10-09 22:16:31 +0400
commita50e4191773a6846031f7640de34202035f5f1b1 (patch)
tree5f7a92257e251a7b42762ed10726442374ab7f43 /src/filters/transform/mpadecfilter
parent67855f8d3745dacd282fd08f7f95d90b3d5b4f31 (diff)
updated msinttypes-r26
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@1298 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/filters/transform/mpadecfilter')
-rw-r--r--src/filters/transform/mpadecfilter/MpaDecFilter.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/filters/transform/mpadecfilter/MpaDecFilter.cpp b/src/filters/transform/mpadecfilter/MpaDecFilter.cpp
index 40f073e6e..b95d983f0 100644
--- a/src/filters/transform/mpadecfilter/MpaDecFilter.cpp
+++ b/src/filters/transform/mpadecfilter/MpaDecFilter.cpp
@@ -2138,7 +2138,6 @@ bool vorbis_state_t::init(const CMediaType& mt)
return true;
}
-
#pragma region Flac callback
void CMpaDecFilter::FlacFillBuffer(BYTE buffer[], size_t *bytes)
@@ -2258,13 +2257,10 @@ void CMpaDecFilter::flac_stream_finish()
}
}
-
#pragma endregion
#pragma region Ffmpeg decoder
-
-
// Version 1 : using av_parser_parse !
#if 0
HRESULT CMpaDecFilter::DeliverFfmpeg(int nCodecId, BYTE* p, int buffsize, int& size)
@@ -2431,7 +2427,6 @@ HRESULT CMpaDecFilter::DeliverFfmpeg(int nCodecId, BYTE* p, int buffsize, int& s
for(int ch=0; ch<m_pAVCtx->channels; ch++)
{
*pDataOut = (float)((int32_t*)m_pPCMData) [scmap->ch[ch]+i*m_pAVCtx->channels] / INT_MAX;
-// *pDataOut = (float)((int32_t*)m_pPCMData) [ch+i*m_pAVCtx->channels] / INT_MAX;
pDataOut++;
}
}