2 * DTS Coherent Acoustics stream decoder using libdca
3 * This file is partially based on dtsdec.c r9036 from FFmpeg and ad_liba52.c
5 * Copyright (C) 2007 Roberto Togni
7 * This file is part of MPlayer.
9 * MPlayer is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * MPlayer is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
31 #include "ad_internal.h"
35 static ad_info_t info
=
37 "DTS decoding with libdca",
46 #define DTSBUFFER_SIZE 18726
47 #define HEADER_SIZE 14
49 #define CONVERT_LEVEL 1
50 #define CONVERT_BIAS 0
52 static const char ch2flags
[6] = {
61 static inline int16_t convert(sample_t s
)
65 return (i
> 32767) ? 32767 : ((i
< -32768) ? -32768 : i
);
68 static void convert2s16_multi(sample_t
*f
, int16_t *s16
, int flags
, int ch_out
)
72 switch(flags
& (DTS_CHANNEL_MASK
| DTS_LFE
)){
75 for(i
= 0; i
< 256; i
++)
76 s16
[i
] = convert(f
[i
]);
78 for(i
= 0; i
< 256; i
++){
79 s16
[5*i
] = s16
[5*i
+1] = s16
[5*i
+2] = s16
[5*i
+3] = 0;
80 s16
[5*i
+4] = convert(f
[i
]);
86 for(i
= 0; i
< 256; i
++){
87 s16
[2*i
] = convert(f
[i
]);
88 s16
[2*i
+1] = convert(f
[i
+256]);
92 for(i
= 0; i
< 256; i
++){
93 s16
[3*i
] = convert(f
[i
+256]);
94 s16
[3*i
+1] = convert(f
[i
+512]);
95 s16
[3*i
+2] = convert(f
[i
]);
99 for(i
= 0; i
< 256; i
++){
100 s16
[4*i
] = convert(f
[i
]);
101 s16
[4*i
+1] = convert(f
[i
+256]);
102 s16
[4*i
+2] = convert(f
[i
+512]);
103 s16
[4*i
+3] = convert(f
[i
+768]);
107 for(i
= 0; i
< 256; i
++){
108 s16
[5*i
] = convert(f
[i
+256]);
109 s16
[5*i
+1] = convert(f
[i
+512]);
110 s16
[5*i
+2] = convert(f
[i
+768]);
111 s16
[5*i
+3] = convert(f
[i
+1024]);
112 s16
[5*i
+4] = convert(f
[i
]);
115 case DTS_MONO
| DTS_LFE
:
116 for(i
= 0; i
< 256; i
++){
117 s16
[6*i
] = s16
[6*i
+1] = s16
[6*i
+2] = s16
[6*i
+3] = 0;
118 s16
[6*i
+4] = convert(f
[i
]);
119 s16
[6*i
+5] = convert(f
[i
+256]);
122 case DTS_CHANNEL
| DTS_LFE
:
123 case DTS_STEREO
| DTS_LFE
:
124 case DTS_DOLBY
| DTS_LFE
:
125 for(i
= 0; i
< 256; i
++){
126 s16
[6*i
] = convert(f
[i
]);
127 s16
[6*i
+1] = convert(f
[i
+256]);
128 s16
[6*i
+2] = s16
[6*i
+3] = s16
[6*i
+4] = 0;
129 s16
[6*i
+5] = convert(f
[i
+512]);
132 case DTS_3F
| DTS_LFE
:
133 for(i
= 0; i
< 256; i
++){
134 s16
[6*i
] = convert(f
[i
+256]);
135 s16
[6*i
+1] = convert(f
[i
+512]);
136 s16
[6*i
+2] = s16
[6*i
+3] = 0;
137 s16
[6*i
+4] = convert(f
[i
]);
138 s16
[6*i
+5] = convert(f
[i
+768]);
141 case DTS_2F2R
| DTS_LFE
:
142 for(i
= 0; i
< 256; i
++){
143 s16
[6*i
] = convert(f
[i
]);
144 s16
[6*i
+1] = convert(f
[i
+256]);
145 s16
[6*i
+2] = convert(f
[i
+512]);
146 s16
[6*i
+3] = convert(f
[i
+768]);
148 s16
[6*i
+5] = convert(f
[1024]);
151 case DTS_3F2R
| DTS_LFE
:
152 for(i
= 0; i
< 256; i
++){
153 s16
[6*i
] = convert(f
[i
+256]);
154 s16
[6*i
+1] = convert(f
[i
+512]);
155 s16
[6*i
+2] = convert(f
[i
+768]);
156 s16
[6*i
+3] = convert(f
[i
+1024]);
157 s16
[6*i
+4] = convert(f
[i
]);
158 s16
[6*i
+5] = convert(f
[i
+1280]);
164 static void channels_info(int flags
)
169 if (flags
& DTS_LFE
) {
171 strcpy(lfestr
, "+lfe");
173 mp_msg(MSGT_DECAUDIO
, MSGL_V
, "DTS: ");
174 switch(flags
& DTS_CHANNEL_MASK
){
176 mp_msg(MSGT_DECAUDIO
, MSGL_V
, "1.%d (mono%s)", lfe
, lfestr
);
179 mp_msg(MSGT_DECAUDIO
, MSGL_V
, "2.%d (channel%s)", lfe
, lfestr
);
182 mp_msg(MSGT_DECAUDIO
, MSGL_V
, "2.%d (stereo%s)", lfe
, lfestr
);
185 mp_msg(MSGT_DECAUDIO
, MSGL_V
, "3.%d (3f%s)", lfe
, lfestr
);
188 mp_msg(MSGT_DECAUDIO
, MSGL_V
, "4.%d (2f+2r%s)", lfe
, lfestr
);
191 mp_msg(MSGT_DECAUDIO
, MSGL_V
, "5.%d (3f+2r%s)", lfe
, lfestr
);
194 mp_msg(MSGT_DECAUDIO
, MSGL_V
, "x.%d (unknown%s)", lfe
, lfestr
);
196 mp_msg(MSGT_DECAUDIO
, MSGL_V
, "\n");
199 static int dts_sync(sh_audio_t
*sh
, int *flags
)
201 dts_state_t
*s
= sh
->context
;
207 sh
->a_in_buffer_len
=0;
210 while(sh
->a_in_buffer_len
< HEADER_SIZE
) {
211 int c
= demux_getc(sh
->ds
);
215 sh
->a_in_buffer
[sh
->a_in_buffer_len
++] = c
;
218 length
= dts_syncinfo(s
, sh
->a_in_buffer
, flags
, &sample_rate
,
219 &bit_rate
, &frame_length
);
221 if(length
>= HEADER_SIZE
)
224 // mp_msg(MSGT_DECAUDIO, MSGL_V, "skip\n");
225 memmove(sh
->a_in_buffer
, sh
->a_in_buffer
+1, HEADER_SIZE
-1);
226 --sh
->a_in_buffer_len
;
229 demux_read_data(sh
->ds
, sh
->a_in_buffer
+ HEADER_SIZE
, length
- HEADER_SIZE
);
231 sh
->samplerate
= sample_rate
;
232 sh
->i_bps
= bit_rate
/8;
237 static int decode_audio(sh_audio_t
*sh
, unsigned char *buf
, int minlen
, int maxlen
)
239 dts_state_t
*s
= sh
->context
;
240 int16_t *out_samples
= (int16_t*)buf
;
248 if(!sh
->a_in_buffer_len
)
249 if(dts_sync(sh
, &flags
) < 0) return -1; /* EOF */
250 sh
->a_in_buffer_len
=0;
252 flags
&= ~(DTS_CHANNEL_MASK
| DTS_LFE
);
253 flags
|= ch2flags
[sh
->channels
- 1];
255 level
= CONVERT_LEVEL
;
257 flags
|= DTS_ADJUST_LEVEL
;
258 if(dts_frame(s
, sh
->a_in_buffer
, &flags
, &level
, bias
)) {
259 mp_msg(MSGT_DECAUDIO
, MSGL_ERR
, "dts_frame() failed\n");
263 nblocks
= dts_blocks_num(s
);
265 for(i
= 0; i
< nblocks
; i
++) {
267 mp_msg(MSGT_DECAUDIO
, MSGL_ERR
, "dts_block() failed\n");
271 convert2s16_multi(dts_samples(s
), out_samples
, flags
, sh
->channels
);
273 out_samples
+= 256 * sh
->channels
;
274 data_size
+= 256 * sizeof(int16_t) * sh
->channels
;
281 static int preinit(sh_audio_t
*sh
)
283 /* 256 = samples per block, 16 = max number of blocks */
284 sh
->audio_out_minsize
= audio_output_channels
* sizeof(int16_t) * 256 * 16;
285 sh
->audio_in_minsize
= DTSBUFFER_SIZE
;
291 static int init(sh_audio_t
*sh
)
299 mp_msg(MSGT_DECAUDIO
, MSGL_ERR
, "dts_init() failed\n");
304 if(dts_sync(sh
, &flags
) < 0) {
305 mp_msg(MSGT_DECAUDIO
, MSGL_ERR
, "dts sync failed\n");
309 channels_info(flags
);
311 assert(audio_output_channels
>= 1 && audio_output_channels
<= 6);
312 sh
->channels
= audio_output_channels
;
314 decoded_bytes
= decode_audio(sh
, sh
->a_buffer
, 1, sh
->a_buffer_size
);
315 if(decoded_bytes
> 0)
316 sh
->a_buffer_len
= decoded_bytes
;
318 mp_msg(MSGT_DECAUDIO
, MSGL_ERR
, "dts decode failed on first frame (up/downmix problem?)\n");
326 static void uninit(sh_audio_t
*sh
)
328 dts_state_t
*s
= sh
->context
;
333 static int control(sh_audio_t
*sh
,int cmd
,void* arg
, ...)
338 case ADCTRL_RESYNC_STREAM
:
339 dts_sync(sh
, &flags
);
342 return CONTROL_UNKNOWN
;