summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b298568)
raw | patch | inline | side by side (parent: b298568)
author | Chitresh Gupta <chitresh.g@pathpartnertech.com> | |
Mon, 29 May 2017 14:56:50 +0000 (20:26 +0530) | ||
committer | Chitresh Gupta <chitresh.g@pathpartnertech.com> | |
Mon, 29 May 2017 14:56:50 +0000 (20:26 +0530) |
dolby_ip/mat-thd | patch | blob | history | |
pasdk/test_arm/framework/audioStreamDecodeProc.c | patch | blob | history |
diff --git a/dolby_ip/mat-thd b/dolby_ip/mat-thd
index b4e50b68a7671d2d6756e0f7619c248ca2b17f33..0fc505df9aae2ad779db805341fec30d77abc08b 160000 (submodule)
--- a/dolby_ip/mat-thd
+++ b/dolby_ip/mat-thd
-Subproject commit b4e50b68a7671d2d6756e0f7619c248ca2b17f33
+Subproject commit 0fc505df9aae2ad779db805341fec30d77abc08b
diff --git a/pasdk/test_arm/framework/audioStreamDecodeProc.c b/pasdk/test_arm/framework/audioStreamDecodeProc.c
index cfe72fdedf1921645e40666ba814b6ce99317ed1..6eb6d2f861082eab761bfed0243422fd62e0cbcf 100644 (file)
//#define CAPTURE_DECODER_OUTSAMPLES_PP
#ifdef CAPTURE_DECODER_OUTSAMPLES_PP
-#define CAP_FRAME_SAMPLES 2000
-Uint32 sampCountCapFrame = 0;
-int tempCap_decSampleOut[CAP_FRAME_SAMPLES] = {0.0};
+#define CAP_FRAME_MAX 2000
+Uint32 tempCap_frameCnt = 0;
+int tempCap_decSampleOut[CAP_FRAME_MAX] = {0};
#endif
/*
#ifdef CAPTURE_DECODER_OUTSAMPLES_PP
- if (sampCountCapFrame < CAP_FRAME_SAMPLES)
+ if (tempCap_frameCnt < CAP_FRAME_MAX)
{
- tempCap_decSampleOut[sampCountCapFrame] = pAfWrt->sampleCount;
- sampCountCapFrame++;
+ tempCap_decSampleOut[tempCap_frameCnt] = pAfWrt->sampleCount;
+ tempCap_frameCnt++;
}
#endif