blob: 53b56d8f297efcb12b3a6c8602321dba3946840a (
plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
/* $Id: LpcmDec.c,v 1.1 2004/03/08 11:32:48 titer Exp $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.m0k.org/>.
It may be used under the terms of the GNU General Public License. */
#include "HBInternal.h"
typedef struct HBLpcmDec
{
HB_WORK_COMMON_MEMBERS
HBHandle * handle;
HBAudio * audio;
int initDone;
int channels;
float sampleLevel;
HBBuffer * rawBuffer;
} HBLpcmDec;
/* Local prototypes */
static int LpcmDecWork( HBWork * );
HBWork * HBLpcmDecInit( HBHandle * handle, HBAudio * audio )
{
HBLpcmDec * l;
if( !( l = calloc( sizeof( HBLpcmDec ), 1 ) ) )
{
HBLog( "HBLpcmDecInit: malloc() failed, gonna crash" );
return NULL;
}
l->name = strdup( "LpcmDec" );
l->work = LpcmDecWork;
l->handle = handle;
l->audio = audio;
if( audio->outCodec & ( HB_CODEC_MP3 | HB_CODEC_VORBIS ) )
{
/* 16 bits samples */
l->sampleLevel = 1.0;
}
else if( audio->outCodec & HB_CODEC_AAC )
{
/* 24 bits samples */
l->sampleLevel = 256.0;
}
return (HBWork*) l;
}
void HBLpcmDecClose( HBWork ** _l )
{
HBLpcmDec * l = (HBLpcmDec*) *_l;
/* Clean up */
if( l->rawBuffer )
{
HBBufferClose( &l->rawBuffer );
}
free( l->name );
free( l );
*_l = NULL;
}
static int LpcmDecWork( HBWork * w )
{
HBLpcmDec * l = (HBLpcmDec*) w;
HBAudio * audio = l->audio;
HBBuffer * lpcmBuffer;
int16_t * int16data;
int i;
int samples;
int didSomething = 0;
/* Push decoded buffer */
if( l->rawBuffer )
{
if( HBFifoPush( audio->rawFifo, &l->rawBuffer ) )
{
didSomething = 1;
}
else
{
return 0;
}
}
/* Get a new LPCM buffer */
lpcmBuffer = HBFifoPop( audio->inFifo );
if( !lpcmBuffer )
{
return didSomething;
}
if( !l->initDone )
{
/* SampleRate */
switch( ( lpcmBuffer->data[4] >> 4 ) & 0x3 )
{
case 0:
audio->inSampleRate = 48000;
break;
case 1:
audio->inSampleRate = 32000;
break;
default:
HBLog( "LpcmDec: unknown samplerate (%d)",
( lpcmBuffer->data[4] >> 4 ) & 0x3 );
}
HBLog( "LpcmDec: samplerate = %d Hz", audio->inSampleRate );
/* Channels */
HBLog( "LpcmDec: %d channels",
( lpcmBuffer->data[4] & 0x7 ) + 1 );
l->initDone = 1;
}
if( lpcmBuffer->data[5] != 0x80 )
{
HBLog( "LpcmDec: no frame synx (%02x�", lpcmBuffer->data[5] );
}
samples = ( lpcmBuffer->size - 6 ) / sizeof( int16_t ) / 2;
int16data = (int16_t*) ( lpcmBuffer->data + 6 );
l->rawBuffer = HBBufferInit( samples * sizeof( float ) * 2 );
l->rawBuffer->left = (float*) l->rawBuffer->data;
l->rawBuffer->right = l->rawBuffer->left + samples;
l->rawBuffer->position = lpcmBuffer->position;
l->rawBuffer->samples = samples;
for( i = 0; i < samples; i++ )
{
l->rawBuffer->left[i] = (float) int16data[2*i] * l->sampleLevel;
l->rawBuffer->right[i] = (float) int16data[2*i+1] * l->sampleLevel;
}
HBBufferClose( &lpcmBuffer );
return 1;
}
|