1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
--- src/alac.c.orig 2011-08-20 22:06:21 UTC
+++ src/alac.c
@@ -804,7 +804,7 @@ void decode_frame(alac_file *alac,
}
else
{
- fprintf(stderr, "FIXME: unhandled predicition type: %i\n", prediction_type);
+ xprintf("FIXME: unhandled predicition type: %i\n", prediction_type);
/* i think the only other prediction type (or perhaps this is just a
* boolean?) runs adaptive fir twice.. like:
* predictor_decompress_fir_adapt(predictor_error, tempout, ...)
@@ -885,7 +885,7 @@ void decode_frame(alac_file *alac,
}
case 20:
case 32:
- fprintf(stderr, "FIXME: unimplemented sample size %i\n", alac->setinfo_sample_size);
+ xprintf("FIXME: unimplemented sample size %i\n", alac->setinfo_sample_size);
break;
default:
break;
@@ -1004,7 +1004,7 @@ void decode_frame(alac_file *alac,
}
else
{ /* see mono case */
- fprintf(stderr, "FIXME: unhandled predicition type: %i\n", prediction_type_a);
+ xprintf("FIXME: unhandled predicition type: %i\n", prediction_type_a);
}
/* channel 2 */
@@ -1029,7 +1029,7 @@ void decode_frame(alac_file *alac,
}
else
{
- fprintf(stderr, "FIXME: unhandled predicition type: %i\n", prediction_type_b);
+ xprintf("FIXME: unhandled predicition type: %i\n", prediction_type_b);
}
}
else
@@ -1106,7 +1106,7 @@ void decode_frame(alac_file *alac,
}
case 20:
case 32:
- fprintf(stderr, "FIXME: unimplemented sample size %i\n", alac->setinfo_sample_size);
+ xprintf("FIXME: unimplemented sample size %i\n", alac->setinfo_sample_size);
break;
default:
break;
|