Lines Matching refs:descriptor

420 void JPEGDEC_SetSlotNextDescpt(JPEG_DECODER_Type *base, uint8_t slot, jpegdec_descpt_t *descriptor)  in JPEGDEC_SetSlotNextDescpt()  argument
423 assert(((uint32_t)descriptor & 0x3U) == 0U); in JPEGDEC_SetSlotNextDescpt()
424 assert((descriptor->config.outBufAddr0 & 0xFU) == 0U); in JPEGDEC_SetSlotNextDescpt()
425 assert((descriptor->config.outBufAddr1 & 0xFU) == 0U); in JPEGDEC_SetSlotNextDescpt()
426 assert((descriptor->config.jpegBufAddr & 0xFU) == 0U); in JPEGDEC_SetSlotNextDescpt()
427 assert((descriptor->config.jpegBufSize & 0x3FFU) == 0U); in JPEGDEC_SetSlotNextDescpt()
429 base->wrapper->SLOT_REGS[slot].SLOT_NXT_DESCPT_PTR = (uint32_t)descriptor; in JPEGDEC_SetSlotNextDescpt()
438 void JPEGDEC_DescptReset(jpegdec_descpt_t *descriptor) in JPEGDEC_DescptReset() argument
440 assert(descriptor != NULL); in JPEGDEC_DescptReset()
443 descriptor->nextDescptAddr = 0U; in JPEGDEC_DescptReset()
444 descriptor->config.outBufAddr0 = 0U; in JPEGDEC_DescptReset()
445 descriptor->config.outBufAddr0 = 0U; in JPEGDEC_DescptReset()
446 descriptor->config.outBufPitch = 0U; in JPEGDEC_DescptReset()
447 descriptor->config.jpegBufAddr = 0U; in JPEGDEC_DescptReset()
448 descriptor->config.jpegBufSize = 0U; in JPEGDEC_DescptReset()
449 descriptor->config.height = 0U; in JPEGDEC_DescptReset()
450 descriptor->config.width = 0U; in JPEGDEC_DescptReset()
451 descriptor->config.pixelDepth = (uint32_t)kJPEGDEC_PixelDepth8Bit; in JPEGDEC_DescptReset()
452 descriptor->config.pixelFormat = (uint32_t)kJPEGDEC_PixelFormatYUV420; in JPEGDEC_DescptReset()
453 descriptor->config.clearStreamBuf = (uint32_t) false; in JPEGDEC_DescptReset()
455 descriptor->config.autoStart = (uint32_t) true; in JPEGDEC_DescptReset()