Lines Matching defs:count
195 void (*predictor_decode_mono)(struct APEContext *ctx, int count);
196 void (*predictor_decode_stereo)(struct APEContext *ctx, int count);
200 int32_t *decoded1, int count);
212 static void predictor_decode_mono_3800(APEContext *ctx, int count);
213 static void predictor_decode_stereo_3800(APEContext *ctx, int count);
214 static void predictor_decode_mono_3930(APEContext *ctx, int count);
215 static void predictor_decode_stereo_3930(APEContext *ctx, int count);
216 static void predictor_decode_mono_3950(APEContext *ctx, int count);
217 static void predictor_decode_stereo_3950(APEContext *ctx, int count);
990 static void predictor_decode_stereo_3800(APEContext *ctx, int count)
999 long_filter_high_3800(decoded0, 16, 9, count);
1000 long_filter_high_3800(decoded1, 16, 9, count);
1008 long_filter_ehigh_3830(decoded0 + order, count - order);
1009 long_filter_ehigh_3830(decoded1 + order, count - order);
1012 long_filter_high_3800(decoded0, order, shift2, count);
1013 long_filter_high_3800(decoded1, order, shift2, count);
1016 while (count--) {
1045 static void predictor_decode_mono_3800(APEContext *ctx, int count)
1053 long_filter_high_3800(decoded0, 16, 9, count);
1061 long_filter_ehigh_3830(decoded0 + order, count - order);
1064 long_filter_high_3800(decoded0, order, shift2, count);
1067 while (count--) {
1120 static void predictor_decode_stereo_3930(APEContext *ctx, int count)
1126 ape_apply_filters(ctx, ctx->decoded[0], ctx->decoded[1], count);
1128 while (count--) {
1148 static void predictor_decode_mono_3930(APEContext *ctx, int count)
1153 ape_apply_filters(ctx, ctx->decoded[0], NULL, count);
1155 while (count--) {
1225 static void predictor_decode_stereo_3950(APEContext *ctx, int count)
1231 ape_apply_filters(ctx, ctx->decoded[0], ctx->decoded[1], count);
1233 while (count--) {
1256 static void predictor_decode_mono_3950(APEContext *ctx, int count)
1262 ape_apply_filters(ctx, ctx->decoded[0], NULL, count);
1266 while (count--) {
1323 int32_t *data, int count, int order, int fracbits)
1328 while (count--) {
1386 int count, int order, int fracbits)
1388 do_apply_filter(ctx, ctx->fileversion, &f[0], data0, count, order, fracbits);
1390 do_apply_filter(ctx, ctx->fileversion, &f[1], data1, count, order, fracbits);
1394 int32_t *decoded1, int count)
1401 apply_filter(ctx, ctx->filters[i], decoded0, decoded1, count,
1423 static void ape_unpack_mono(APEContext *ctx, int count)
1431 ctx->entropy_decode_mono(ctx, count);
1436 ctx->predictor_decode_mono(ctx, count);
1440 memcpy(ctx->decoded[1], ctx->decoded[0], count * sizeof(*ctx->decoded[1]));
1444 static void ape_unpack_stereo(APEContext *ctx, int count)
1456 ctx->entropy_decode_stereo(ctx, count);
1461 ctx->predictor_decode_stereo(ctx, count);
1464 while (count--) {
1541 av_log(avctx, AV_LOG_ERROR, "Invalid sample count: %"PRIu32".\n",