From 925047c1d00aa33beb9032be44069fdc2fc54ad5 Mon Sep 17 00:00:00 2001 From: Frank Livingston Date: Tue, 12 Sep 2017 14:02:15 -0500 Subject: [PATCH 1/1] Add comments to alpha command files - Add comments to Dec Op CB alpha command header file. - Update PAF submodule for updated PAF SYS alpha header file. --- pasdk/paf | 2 +- pasdk/test_dsp/framework/alpha/pafdecopcb_a.h | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/pasdk/paf b/pasdk/paf index 0dd40b30..0da4c97e 160000 --- a/pasdk/paf +++ b/pasdk/paf @@ -1 +1 @@ -Subproject commit 0dd40b301c27f5429a915fe03f02b1037cb46e0e +Subproject commit 0da4c97e4fd187a4c958e061f642b61fc6b37db2 diff --git a/pasdk/test_dsp/framework/alpha/pafdecopcb_a.h b/pasdk/test_dsp/framework/alpha/pafdecopcb_a.h index 797b7d50..7543e915 100644 --- a/pasdk/test_dsp/framework/alpha/pafdecopcb_a.h +++ b/pasdk/test_dsp/framework/alpha/pafdecopcb_a.h @@ -38,10 +38,20 @@ All rights reserved. #include +// +// Decoder Output Circular Buffer alpha codes. +// "Stream" frame length is CB read frame length (16-bits). +// + +// Read CB stream frame length #define readDECOPCBStreamFrameLength 0xc300+STD_BETA_DECOPCB,0x0004 +// Write 256 to CB stream frame length #define writeDECOPCBStreamFrameLength256 0xcb00+STD_BETA_DECOPCB,0x0004,0x0100 +// Write 512 to CB stream frame length #define writeDECOPCBStreamFrameLength512 0xcb00+STD_BETA_DECOPCB,0x0004,0x0200 +// Write 1024 to CB stream frame length #define writeDECOPCBStreamFrameLength1024 0xcb00+STD_BETA_DECOPCB,0x0004,0x0400 +// Write N to CB stream frame length #define writeDECOPCBStreamFrameLengthN(N) 0xcb00+STD_BETA_DECOPCB,0x0004,(N&0xFFFF) #endif // _PAF_DECOPCB_A_H_ -- 2.26.2