3396
|
1
|
|
2 // liba52 sample by A'rpi/ESP-team
|
|
3 // reads ac3 stream form stdin, decodes and downmix to s16 stereo pcm and
|
|
4 // writes it to stdout. resulting stream playbackable with sox:
|
|
5 // play -c 2 -r 48000 out.sw
|
|
6
|
3507
|
7 //#define TIMING //needs Pentium or newer
|
|
8
|
3396
|
9 #include <stdio.h>
|
|
10 #include <stdlib.h>
|
|
11 #include <inttypes.h>
|
|
12
|
|
13 #include "a52.h"
|
3579
|
14 #include "../cpudetect.h"
|
3396
|
15
|
|
16 static sample_t * samples;
|
|
17 static a52_state_t state;
|
|
18 static uint8_t buf[3840];
|
|
19 static int buf_size=0;
|
|
20
|
|
21 static int16_t out_buf[6*256*6];
|
|
22
|
3507
|
23 #ifdef TIMING
|
|
24 static inline long long rdtsc()
|
|
25 {
|
|
26 long long l;
|
|
27 asm volatile( "rdtsc\n\t"
|
|
28 : "=A" (l)
|
|
29 );
|
|
30 // printf("%d\n", int(l/1000));
|
|
31 return l;
|
|
32 }
|
|
33
|
|
34 #define STARTTIMING t=rdtsc();
|
|
35 #define ENDTIMING sum+=rdtsc()-t; t=rdtsc();
|
|
36 #else
|
|
37 #define STARTTIMING ;
|
|
38 #define ENDTIMING ;
|
|
39 #endif
|
|
40
|
|
41
|
3396
|
42 int main(){
|
|
43 int accel=0;
|
|
44 int sample_rate=0;
|
|
45 int bit_rate=0;
|
3507
|
46 #ifdef TIMING
|
3511
|
47 long long t, sum=0, min=256*256*256*64;
|
3507
|
48 #endif
|
3396
|
49
|
3579
|
50 FILE *temp= stdout;
|
|
51 stdout= stderr; //EVIL HACK FIXME
|
|
52 GetCpuCaps(&gCpuCaps);
|
|
53 stdout= temp;
|
|
54
|
3396
|
55 samples = a52_init (accel);
|
|
56 if (samples == NULL) {
|
|
57 fprintf (stderr, "A52 init failed\n");
|
|
58 return 1;
|
|
59 }
|
|
60
|
|
61 while(1){
|
|
62 int length,i;
|
|
63 int16_t *s16;
|
|
64 sample_t level=1, bias=384;
|
|
65 int flags=0;
|
3565
|
66 int channels=0;
|
3396
|
67
|
|
68 while(buf_size<7){
|
|
69 int c=getchar();
|
|
70 if(c<0) goto eof;
|
|
71 buf[buf_size++]=c;
|
|
72 }
|
3507
|
73 STARTTIMING
|
3396
|
74 length = a52_syncinfo (buf, &flags, &sample_rate, &bit_rate);
|
3507
|
75 ENDTIMING
|
3396
|
76 if(!length){
|
|
77 // bad file => resync
|
|
78 memcpy(buf,buf+1,6);
|
|
79 --buf_size;
|
|
80 continue;
|
|
81 }
|
|
82 fprintf(stderr,"sync. %d bytes 0x%X %d Hz %d kbit\n",length,flags,sample_rate,bit_rate);
|
|
83 while(buf_size<length){
|
|
84 buf[buf_size++]=getchar();
|
|
85 }
|
|
86
|
|
87 buf_size=0;
|
|
88
|
|
89 // decode:
|
3579
|
90 flags=A52_STEREO; //A52_STEREO; // A52_DOLBY // A52_2F2R // A52_3F2R | A52_LFE
|
3565
|
91 channels=2;
|
|
92
|
3396
|
93 flags |= A52_ADJUST_LEVEL;
|
3507
|
94 STARTTIMING
|
3396
|
95 if (a52_frame (&state, buf, &flags, &level, bias))
|
|
96 { fprintf(stderr,"error at decoding\n"); continue; }
|
3507
|
97 ENDTIMING
|
3396
|
98
|
|
99 // a52_dynrng (&state, NULL, NULL); // disable dynamic range compensation
|
|
100
|
3579
|
101 STARTTIMING
|
3565
|
102 a52_resample_init(flags,channels);
|
3396
|
103 s16 = out_buf;
|
|
104 for (i = 0; i < 6; i++) {
|
|
105 if (a52_block (&state, samples))
|
|
106 { fprintf(stderr,"error at sampling\n"); break; }
|
3565
|
107 // float->int + channels interleaving:
|
|
108 s16+=a52_resample(samples,s16);
|
3579
|
109 ENDTIMING
|
3396
|
110 }
|
3511
|
111 #ifdef TIMING
|
|
112 if(sum<min) min=sum;
|
|
113 sum=0;
|
|
114 #endif
|
3396
|
115 fwrite(out_buf,6*256*2*2,1,stdout);
|
|
116
|
|
117 }
|
|
118
|
|
119 eof:
|
3507
|
120 #ifdef TIMING
|
3511
|
121 fprintf(stderr, "%4.4fk cycles ",min/1000.0);
|
|
122 sum=0;
|
3507
|
123 #endif
|
3396
|
124 }
|