• Home
  • Raw
  • Download

Lines Matching refs:decoded

174     int32_t *decoded[MAX_CHANNELS];          ///< decoded data for each channel  member
667 decode_array_0000(ctx, &ctx->gb, ctx->decoded[0], &ctx->riceY, in entropy_decode_mono_0000()
673 decode_array_0000(ctx, &ctx->gb, ctx->decoded[0], &ctx->riceY, in entropy_decode_stereo_0000()
675 decode_array_0000(ctx, &ctx->gb, ctx->decoded[1], &ctx->riceX, in entropy_decode_stereo_0000()
681 int32_t *decoded0 = ctx->decoded[0]; in entropy_decode_mono_3860()
689 int32_t *decoded0 = ctx->decoded[0]; in entropy_decode_stereo_3860()
690 int32_t *decoded1 = ctx->decoded[1]; in entropy_decode_stereo_3860()
701 int32_t *decoded0 = ctx->decoded[0]; in entropy_decode_mono_3900()
709 int32_t *decoded0 = ctx->decoded[0]; in entropy_decode_stereo_3900()
710 int32_t *decoded1 = ctx->decoded[1]; in entropy_decode_stereo_3900()
725 int32_t *decoded0 = ctx->decoded[0]; in entropy_decode_stereo_3930()
726 int32_t *decoded1 = ctx->decoded[1]; in entropy_decode_stereo_3930()
736 int32_t *decoded0 = ctx->decoded[0]; in entropy_decode_mono_3990()
744 int32_t *decoded0 = ctx->decoded[0]; in entropy_decode_stereo_3990()
745 int32_t *decoded1 = ctx->decoded[1]; in entropy_decode_stereo_3990()
869 const int decoded, const int filter, in filter_fast_3320() argument
876 p->lastA[filter] = decoded; in filter_fast_3320()
877 p->filterA[filter] = decoded; in filter_fast_3320()
878 return decoded; in filter_fast_3320()
882 p->lastA[filter] = decoded + (unsigned)((int32_t)(predictionA * p->coeffsA[filter][0]) >> 9); in filter_fast_3320()
884 if ((decoded ^ predictionA) > 0) in filter_fast_3320()
895 const unsigned decoded, const int filter, in filter_3800() argument
905 predictionA = decoded + p->filterA[filter]; in filter_3800()
906 p->lastA[filter] = decoded; in filter_3800()
907 p->filterB[filter] = decoded; in filter_3800()
921 sign = APESIGN(decoded); in filter_3800()
928 p->lastA[filter] = decoded + (predictionA >> 11); in filter_3800()
989 int32_t *decoded0 = ctx->decoded[0]; in predictor_decode_stereo_3800()
990 int32_t *decoded1 = ctx->decoded[1]; in predictor_decode_stereo_3800()
1044 int32_t *decoded0 = ctx->decoded[0]; in predictor_decode_mono_3800()
1087 const int decoded, const int filter, in predictor_update_3930() argument
1104 p->lastA[filter] = decoded + (predictionA >> 9); in predictor_update_3930()
1107 sign = APESIGN(decoded); in predictor_update_3930()
1119 int32_t *decoded0 = ctx->decoded[0]; in predictor_decode_stereo_3930()
1120 int32_t *decoded1 = ctx->decoded[1]; in predictor_decode_stereo_3930()
1122 ape_apply_filters(ctx, ctx->decoded[0], ctx->decoded[1], count); in predictor_decode_stereo_3930()
1147 int32_t *decoded0 = ctx->decoded[0]; in predictor_decode_mono_3930()
1149 ape_apply_filters(ctx, ctx->decoded[0], NULL, count); in predictor_decode_mono_3930()
1167 const int decoded, const int filter, in predictor_update_filter() argument
1197 p->lastA[filter] = decoded + ((int64_t)((uint64_t)predictionA + (predictionB >> 1)) >> 10); in predictor_update_filter()
1200 sign = APESIGN(decoded); in predictor_update_filter()
1217 int32_t *decoded0 = ctx->decoded[0]; in predictor_decode_stereo_3950()
1218 int32_t *decoded1 = ctx->decoded[1]; in predictor_decode_stereo_3950()
1220 ape_apply_filters(ctx, ctx->decoded[0], ctx->decoded[1], count); in predictor_decode_stereo_3950()
1246 int32_t *decoded0 = ctx->decoded[0]; in predictor_decode_mono_3950()
1249 ape_apply_filters(ctx, ctx->decoded[0], NULL, count); in predictor_decode_mono_3950()
1427 memcpy(ctx->decoded[1], ctx->decoded[0], count * sizeof(*ctx->decoded[1])); in ape_unpack_mono()
1434 int32_t *decoded0 = ctx->decoded[0]; in ape_unpack_stereo()
1435 int32_t *decoded1 = ctx->decoded[1]; in ape_unpack_stereo()
1568 s->decoded[0] = s->decoded_buffer; in ape_decode_frame()
1569 s->decoded[1] = s->decoded_buffer + FFALIGN(blockstodecode, 8); in ape_decode_frame()
1590 *sample8++ = (s->decoded[ch][i] + 0x80) & 0xff; in ape_decode_frame()
1597 *sample16++ = s->decoded[ch][i]; in ape_decode_frame()
1604 *sample24++ = s->decoded[ch][i] * 256U; in ape_decode_frame()