Home | History | Annotate | Download | only in fpdf_parser

Lines Matching defs:pParams

194         const CPDF_Dictionary* pParams)

202 if (pParams) {
203 K = pParams->GetInteger(FX_BSTRC("K"));
204 EndOfLine = pParams->GetInteger(FX_BSTRC("EndOfLine"));
205 ByteAlign = pParams->GetInteger(FX_BSTRC("EncodedByteAlign"));
206 BlackIs1 = pParams->GetInteger(FX_BSTRC("BlackIs1"));
207 Columns = pParams->GetInteger(FX_BSTRC("Columns"), 1728);
208 Rows = pParams->GetInteger(FX_BSTRC("Rows"));
240 int nComps, int bpc, const CPDF_Dictionary* pParams)
245 if (pParams) {
246 predictor = ((CPDF_Dictionary*)pParams)->GetInteger(FX_BSTRC("Predictor"));
247 bEarlyChange = ((CPDF_Dictionary*)pParams)->GetInteger(FX_BSTRC("EarlyChange"), 1);
248 Colors = pParams->GetInteger(FX_BSTRC("Colors"), 1);
249 BitsPerComponent = pParams->GetInteger(FX_BSTRC("BitsPerComponent"), 8);
250 Columns = pParams->GetInteger(FX_BSTRC("Columns"), 1);
258 FX_DWORD FPDFAPI_FlateOrLZWDecode(FX_BOOL bLZW, const FX_BYTE* src_buf, FX_DWORD src_size, CPDF_Dictionary* pParams,
264 if (pParams) {
265 predictor = ((CPDF_Dictionary*)pParams)->GetInteger(FX_BSTRC("Predictor"));
266 bEarlyChange = ((CPDF_Dictionary*)pParams)->GetInteger(FX_BSTRC("EarlyChange"), 1);
267 Colors = pParams->GetInteger(FX_BSTRC("Colors"), 1);
268 BitsPerComponent = pParams->GetInteger(FX_BSTRC("BitsPerComponent"), 8);
269 Columns = pParams->GetInteger(FX_BSTRC("Columns"), 1);
287 CPDF_Object* pParams = pDict->GetElementValue(FX_BSTRC("DecodeParms"));
291 if (pParams && pParams->GetType() != PDFOBJ_ARRAY) {
292 pParams = NULL;
298 if (pParams) {
299 ParamList.Add(((CPDF_Array*)pParams)->GetDict(i));
306 ParamList.Add(pParams->GetDict());