~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to ffmpeg/libavcodec/oggvorbis.c

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-25 15:47:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080225154712-qvr11ekcea4c9ry8
Tags: 1.1.6-0.1ubuntu1
* Merge from debian-multimedia (LP: #120003), Ubuntu Changes:
 - For ffmpeg-related build-deps, remove cvs from package names.
 - Standards-Version 3.7.3
 - Maintainer Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * copyright (c) 2002 Mark Hills <mark@pogo.org.uk>
 
3
 *
 
4
 * This file is part of FFmpeg.
 
5
 *
 
6
 * FFmpeg is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU Lesser General Public
 
8
 * License as published by the Free Software Foundation; either
 
9
 * version 2.1 of the License, or (at your option) any later version.
 
10
 *
 
11
 * FFmpeg is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
 * Lesser General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Lesser General Public
 
17
 * License along with FFmpeg; if not, write to the Free Software
 
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
1
21
/**
2
22
 * @file oggvorbis.c
3
23
 * Ogg Vorbis codec support via libvorbisenc.
4
24
 * @author Mark Hills <mark@pogo.org.uk>
5
25
 */
6
26
 
7
 
#include <time.h>
8
 
 
9
27
#include <vorbis/vorbisenc.h>
10
28
 
11
29
#include "avcodec.h"
12
 
#include "oggvorbis.h"
13
 
 
14
 
#define OGGVORBIS_FRAME_SIZE 1024
15
 
 
 
30
 
 
31
#undef NDEBUG
 
32
#include <assert.h>
 
33
 
 
34
#define OGGVORBIS_FRAME_SIZE 64
 
35
 
 
36
#define BUFFER_SIZE (1024*64)
16
37
 
17
38
typedef struct OggVorbisContext {
18
39
    vorbis_info vi ;
19
40
    vorbis_dsp_state vd ;
20
41
    vorbis_block vb ;
 
42
    uint8_t buffer[BUFFER_SIZE];
 
43
    int buffer_index;
21
44
 
22
45
    /* decoder */
23
46
    vorbis_comment vc ;
 
47
    ogg_packet op;
24
48
} OggVorbisContext ;
25
49
 
26
50
 
27
 
int oggvorbis_init_encoder(vorbis_info *vi, AVCodecContext *avccontext) {
 
51
static int oggvorbis_init_encoder(vorbis_info *vi, AVCodecContext *avccontext) {
 
52
    double cfreq;
 
53
 
 
54
    if(avccontext->flags & CODEC_FLAG_QSCALE) {
 
55
        /* variable bitrate */
 
56
        if(vorbis_encode_setup_vbr(vi, avccontext->channels,
 
57
                avccontext->sample_rate,
 
58
                avccontext->global_quality / (float)FF_QP2LAMBDA))
 
59
            return -1;
 
60
    } else {
 
61
        /* constant bitrate */
 
62
        if(vorbis_encode_setup_managed(vi, avccontext->channels,
 
63
                avccontext->sample_rate, -1, avccontext->bit_rate, -1))
 
64
            return -1;
28
65
 
29
66
#ifdef OGGVORBIS_VBR_BY_ESTIMATE
30
 
    /* variable bitrate by estimate */
31
 
 
32
 
    return (vorbis_encode_setup_managed(vi, avccontext->channels,
33
 
              avccontext->sample_rate, -1, avccontext->bit_rate, -1) ||
34
 
            vorbis_encode_ctl(vi, OV_ECTL_RATEMANAGE_AVG, NULL) ||
35
 
            vorbis_encode_setup_init(vi)) ;
36
 
#else
37
 
    /* constant bitrate */
38
 
 
39
 
    return vorbis_encode_init(vi, avccontext->channels,
40
 
                  avccontext->sample_rate, -1, avccontext->bit_rate, -1) ;
 
67
        /* variable bitrate by estimate */
 
68
        if(vorbis_encode_ctl(vi, OV_ECTL_RATEMANAGE_AVG, NULL))
 
69
            return -1;
41
70
#endif
 
71
    }
 
72
 
 
73
    /* cutoff frequency */
 
74
    if(avccontext->cutoff > 0) {
 
75
        cfreq = avccontext->cutoff / 1000.0;
 
76
        if(vorbis_encode_ctl(vi, OV_ECTL_LOWPASS_SET, &cfreq))
 
77
            return -1;
 
78
    }
 
79
 
 
80
    return vorbis_encode_setup_init(vi);
42
81
}
43
82
 
44
 
 
45
83
static int oggvorbis_encode_init(AVCodecContext *avccontext) {
46
84
    OggVorbisContext *context = avccontext->priv_data ;
 
85
    ogg_packet header, header_comm, header_code;
 
86
    uint8_t *p;
 
87
    unsigned int offset, len;
47
88
 
48
89
    vorbis_info_init(&context->vi) ;
49
90
    if(oggvorbis_init_encoder(&context->vi, avccontext) < 0) {
50
 
        fprintf(stderr, "oggvorbis_encode_init: init_encoder failed") ;
51
 
        return -1 ;
 
91
        av_log(avccontext, AV_LOG_ERROR, "oggvorbis_encode_init: init_encoder failed") ;
 
92
        return -1 ;
52
93
    }
53
94
    vorbis_analysis_init(&context->vd, &context->vi) ;
54
95
    vorbis_block_init(&context->vd, &context->vb) ;
55
96
 
 
97
    vorbis_comment_init(&context->vc);
 
98
    vorbis_comment_add_tag(&context->vc, "encoder", LIBAVCODEC_IDENT) ;
 
99
 
 
100
    vorbis_analysis_headerout(&context->vd, &context->vc, &header,
 
101
                                &header_comm, &header_code);
 
102
 
 
103
    len = header.bytes + header_comm.bytes +  header_code.bytes;
 
104
    avccontext->extradata_size= 64 + len + len/255;
 
105
    p = avccontext->extradata= av_mallocz(avccontext->extradata_size);
 
106
    p[0] = 2;
 
107
    offset = 1;
 
108
    offset += av_xiphlacing(&p[offset], header.bytes);
 
109
    offset += av_xiphlacing(&p[offset], header_comm.bytes);
 
110
    memcpy(&p[offset], header.packet, header.bytes);
 
111
    offset += header.bytes;
 
112
    memcpy(&p[offset], header_comm.packet, header_comm.bytes);
 
113
    offset += header_comm.bytes;
 
114
    memcpy(&p[offset], header_code.packet, header_code.bytes);
 
115
    offset += header_code.bytes;
 
116
    avccontext->extradata_size = offset;
 
117
    avccontext->extradata= av_realloc(avccontext->extradata, avccontext->extradata_size);
 
118
 
 
119
/*    vorbis_block_clear(&context->vb);
 
120
    vorbis_dsp_clear(&context->vd);
 
121
    vorbis_info_clear(&context->vi);*/
 
122
    vorbis_comment_clear(&context->vc);
 
123
 
56
124
    avccontext->frame_size = OGGVORBIS_FRAME_SIZE ;
57
 
 
 
125
 
58
126
    avccontext->coded_frame= avcodec_alloc_frame();
59
127
    avccontext->coded_frame->key_frame= 1;
60
 
    
 
128
 
61
129
    return 0 ;
62
130
}
63
131
 
64
132
 
65
133
static int oggvorbis_encode_frame(AVCodecContext *avccontext,
66
 
                                  unsigned char *packets,
67
 
                           int buf_size, void *data)
 
134
                                  unsigned char *packets,
 
135
                           int buf_size, void *data)
68
136
{
69
137
    OggVorbisContext *context = avccontext->priv_data ;
70
138
    float **buffer ;
71
139
    ogg_packet op ;
72
 
    signed char *audio = data ;
73
 
    int l, samples = OGGVORBIS_FRAME_SIZE ;
 
140
    signed short *audio = data ;
 
141
    int l, samples = data ? OGGVORBIS_FRAME_SIZE : 0;
74
142
 
75
143
    buffer = vorbis_analysis_buffer(&context->vd, samples) ;
76
144
 
77
145
    if(context->vi.channels == 1) {
78
 
        for(l = 0 ; l < samples ; l++)
79
 
            buffer[0][l]=((audio[l*2+1]<<8)|(0x00ff&(int)audio[l*2]))/32768.f;
 
146
        for(l = 0 ; l < samples ; l++)
 
147
            buffer[0][l]=audio[l]/32768.f;
80
148
    } else {
81
 
        for(l = 0 ; l < samples ; l++){
82
 
            buffer[0][l]=((audio[l*4+1]<<8)|(0x00ff&(int)audio[l*4]))/32768.f;
83
 
            buffer[1][l]=((audio[l*4+3]<<8)|(0x00ff&(int)audio[l*4+2]))/32768.f;
84
 
        }
 
149
        for(l = 0 ; l < samples ; l++){
 
150
            buffer[0][l]=audio[l*2]/32768.f;
 
151
            buffer[1][l]=audio[l*2+1]/32768.f;
 
152
        }
85
153
    }
86
 
    
87
 
    vorbis_analysis_wrote(&context->vd, samples) ; 
88
154
 
89
 
    l = 0 ;
 
155
    vorbis_analysis_wrote(&context->vd, samples) ;
90
156
 
91
157
    while(vorbis_analysis_blockout(&context->vd, &context->vb) == 1) {
92
 
        vorbis_analysis(&context->vb, NULL);
93
 
        vorbis_bitrate_addblock(&context->vb) ;
94
 
 
95
 
        while(vorbis_bitrate_flushpacket(&context->vd, &op)) {
96
 
            memcpy(packets + l, &op, sizeof(ogg_packet)) ;
97
 
            memcpy(packets + l + sizeof(ogg_packet), op.packet, op.bytes) ;
98
 
            l += sizeof(ogg_packet) + op.bytes ;
99
 
        }
100
 
    }
101
 
 
102
 
    return l ;
 
158
        vorbis_analysis(&context->vb, NULL);
 
159
        vorbis_bitrate_addblock(&context->vb) ;
 
160
 
 
161
        while(vorbis_bitrate_flushpacket(&context->vd, &op)) {
 
162
            /* i'd love to say the following line is a hack, but sadly it's
 
163
             * not, apparently the end of stream decision is in libogg. */
 
164
            if(op.bytes==1)
 
165
                continue;
 
166
            memcpy(context->buffer + context->buffer_index, &op, sizeof(ogg_packet));
 
167
            context->buffer_index += sizeof(ogg_packet);
 
168
            memcpy(context->buffer + context->buffer_index, op.packet, op.bytes);
 
169
            context->buffer_index += op.bytes;
 
170
//            av_log(avccontext, AV_LOG_DEBUG, "e%d / %d\n", context->buffer_index, op.bytes);
 
171
        }
 
172
    }
 
173
 
 
174
    l=0;
 
175
    if(context->buffer_index){
 
176
        ogg_packet *op2= (ogg_packet*)context->buffer;
 
177
        op2->packet = context->buffer + sizeof(ogg_packet);
 
178
 
 
179
        l=  op2->bytes;
 
180
        avccontext->coded_frame->pts= av_rescale_q(op2->granulepos, (AVRational){1, avccontext->sample_rate}, avccontext->time_base);
 
181
        //FIXME we should reorder the user supplied pts and not assume that they are spaced by 1/sample_rate
 
182
 
 
183
        memcpy(packets, op2->packet, l);
 
184
        context->buffer_index -= l + sizeof(ogg_packet);
 
185
        memcpy(context->buffer, context->buffer + l + sizeof(ogg_packet), context->buffer_index);
 
186
//        av_log(avccontext, AV_LOG_DEBUG, "E%d\n", l);
 
187
    }
 
188
 
 
189
    return l;
103
190
}
104
191
 
105
192
 
106
193
static int oggvorbis_encode_close(AVCodecContext *avccontext) {
107
194
    OggVorbisContext *context = avccontext->priv_data ;
108
195
/*  ogg_packet op ; */
109
 
    
 
196
 
110
197
    vorbis_analysis_wrote(&context->vd, 0) ; /* notify vorbisenc this is EOF */
111
198
 
112
 
    /* We need to write all the remaining packets into the stream
113
 
     * on closing */
114
 
    
115
 
    fprintf(stderr, "fixme: not all packets written on oggvorbis_encode_close()\n") ;
116
 
 
117
 
/*
118
 
    while(vorbis_bitrate_flushpacket(&context->vd, &op)) {
119
 
        memcpy(packets + l, &op, sizeof(ogg_packet)) ;
120
 
        memcpy(packets + l + sizeof(ogg_packet), op.packet, op.bytes) ;
121
 
        l += sizeof(ogg_packet) + op.bytes ;    
122
 
    }
123
 
*/
124
 
 
125
199
    vorbis_block_clear(&context->vb);
126
200
    vorbis_dsp_clear(&context->vd);
127
201
    vorbis_info_clear(&context->vi);
128
202
 
129
203
    av_freep(&avccontext->coded_frame);
130
 
  
 
204
    av_freep(&avccontext->extradata);
 
205
 
131
206
    return 0 ;
132
207
}
133
208
 
139
214
    sizeof(OggVorbisContext),
140
215
    oggvorbis_encode_init,
141
216
    oggvorbis_encode_frame,
142
 
    oggvorbis_encode_close
 
217
    oggvorbis_encode_close,
 
218
    .capabilities= CODEC_CAP_DELAY,
143
219
} ;
144
220
 
145
 
 
146
221
static int oggvorbis_decode_init(AVCodecContext *avccontext) {
147
222
    OggVorbisContext *context = avccontext->priv_data ;
 
223
    uint8_t *p= avccontext->extradata;
 
224
    int i, hsizes[3];
 
225
    unsigned char *headers[3], *extradata = avccontext->extradata;
148
226
 
149
227
    vorbis_info_init(&context->vi) ;
150
228
    vorbis_comment_init(&context->vc) ;
151
229
 
 
230
    if(! avccontext->extradata_size || ! p) {
 
231
        av_log(avccontext, AV_LOG_ERROR, "vorbis extradata absent\n");
 
232
        return -1;
 
233
    }
 
234
 
 
235
    if(p[0] == 0 && p[1] == 30) {
 
236
        for(i = 0; i < 3; i++){
 
237
            hsizes[i] = *p++ << 8;
 
238
            hsizes[i] += *p++;
 
239
            headers[i] = p;
 
240
            p += hsizes[i];
 
241
        }
 
242
    } else if(*p == 2) {
 
243
        unsigned int offset = 1;
 
244
        p++;
 
245
        for(i=0; i<2; i++) {
 
246
            hsizes[i] = 0;
 
247
            while((*p == 0xFF) && (offset < avccontext->extradata_size)) {
 
248
                hsizes[i] += 0xFF;
 
249
                offset++;
 
250
                p++;
 
251
            }
 
252
            if(offset >= avccontext->extradata_size - 1) {
 
253
                av_log(avccontext, AV_LOG_ERROR,
 
254
                       "vorbis header sizes damaged\n");
 
255
                return -1;
 
256
            }
 
257
            hsizes[i] += *p;
 
258
            offset++;
 
259
            p++;
 
260
        }
 
261
        hsizes[2] = avccontext->extradata_size - hsizes[0]-hsizes[1]-offset;
 
262
#if 0
 
263
        av_log(avccontext, AV_LOG_DEBUG,
 
264
               "vorbis header sizes: %d, %d, %d, / extradata_len is %d \n",
 
265
               hsizes[0], hsizes[1], hsizes[2], avccontext->extradata_size);
 
266
#endif
 
267
        headers[0] = extradata + offset;
 
268
        headers[1] = extradata + offset + hsizes[0];
 
269
        headers[2] = extradata + offset + hsizes[0] + hsizes[1];
 
270
    } else {
 
271
        av_log(avccontext, AV_LOG_ERROR,
 
272
               "vorbis initial header len is wrong: %d\n", *p);
 
273
        return -1;
 
274
    }
 
275
 
 
276
    for(i=0; i<3; i++){
 
277
        context->op.b_o_s= i==0;
 
278
        context->op.bytes = hsizes[i];
 
279
        context->op.packet = headers[i];
 
280
        if(vorbis_synthesis_headerin(&context->vi, &context->vc, &context->op)<0){
 
281
            av_log(avccontext, AV_LOG_ERROR, "%d. vorbis header damaged\n", i+1);
 
282
            return -1;
 
283
        }
 
284
    }
 
285
 
 
286
    avccontext->channels = context->vi.channels;
 
287
    avccontext->sample_rate = context->vi.rate;
 
288
    avccontext->time_base= (AVRational){1, avccontext->sample_rate};
 
289
 
 
290
    vorbis_synthesis_init(&context->vd, &context->vi);
 
291
    vorbis_block_init(&context->vd, &context->vb);
 
292
 
152
293
    return 0 ;
153
294
}
154
295
 
157
298
    int i, j, val ;
158
299
    ogg_int16_t *ptr, *data = (ogg_int16_t*)buf ;
159
300
    float *mono ;
160
 
 
 
301
 
161
302
    for(i = 0 ; i < channels ; i++){
162
 
        ptr = &data[i];
163
 
        mono = pcm[i] ;
164
 
        
165
 
        for(j = 0 ; j < samples ; j++) {
166
 
            
167
 
            val = mono[j] * 32767.f;
168
 
            
169
 
            if(val > 32767) val = 32767 ;
170
 
            if(val < -32768) val = -32768 ;
171
 
                    
172
 
            *ptr = val ;
173
 
            ptr += channels;
174
 
        }
 
303
        ptr = &data[i];
 
304
        mono = pcm[i] ;
 
305
 
 
306
        for(j = 0 ; j < samples ; j++) {
 
307
 
 
308
            val = mono[j] * 32767.f;
 
309
 
 
310
            if(val > 32767) val = 32767 ;
 
311
            if(val < -32768) val = -32768 ;
 
312
 
 
313
            *ptr = val ;
 
314
            ptr += channels;
 
315
        }
175
316
    }
176
 
    
 
317
 
177
318
    return 0 ;
178
319
}
179
 
           
180
 
        
 
320
 
 
321
 
181
322
static int oggvorbis_decode_frame(AVCodecContext *avccontext,
182
323
                        void *data, int *data_size,
183
324
                        uint8_t *buf, int buf_size)
184
325
{
185
326
    OggVorbisContext *context = avccontext->priv_data ;
186
 
    ogg_packet *op = (ogg_packet*)buf ;
187
327
    float **pcm ;
188
 
    int samples, total_samples, total_bytes ;
189
 
 
190
 
    op->packet = (char*)op + sizeof(ogg_packet) ; /* correct data pointer */
191
 
 
192
 
    if(op->packetno < 3) {
193
 
        vorbis_synthesis_headerin(&context->vi, &context->vc, op) ;
194
 
        return buf_size ;
195
 
    }
196
 
 
197
 
    if(op->packetno == 3) {
198
 
        fprintf(stderr, "vorbis_decode: %d channel, %ldHz, encoder `%s'\n",
199
 
                context->vi.channels, context->vi.rate, context->vc.vendor);
200
 
 
201
 
        avccontext->channels = context->vi.channels ;
202
 
        avccontext->sample_rate = context->vi.rate ;
203
 
        
204
 
        vorbis_synthesis_init(&context->vd, &context->vi) ;
205
 
        vorbis_block_init(&context->vd, &context->vb); 
206
 
    }
 
328
    ogg_packet *op= &context->op;
 
329
    int samples, total_samples, total_bytes;
 
330
 
 
331
    if(!buf_size){
 
332
    //FIXME flush
 
333
        return 0;
 
334
    }
 
335
 
 
336
    op->packet = buf;
 
337
    op->bytes  = buf_size;
 
338
 
 
339
//    av_log(avccontext, AV_LOG_DEBUG, "%d %d %d %"PRId64" %"PRId64" %d %d\n", op->bytes, op->b_o_s, op->e_o_s, op->granulepos, op->packetno, buf_size, context->vi.rate);
 
340
 
 
341
/*    for(i=0; i<op->bytes; i++)
 
342
      av_log(avccontext, AV_LOG_DEBUG, "%02X ", op->packet[i]);
 
343
    av_log(avccontext, AV_LOG_DEBUG, "\n");*/
207
344
 
208
345
    if(vorbis_synthesis(&context->vb, op) == 0)
209
 
        vorbis_synthesis_blockin(&context->vd, &context->vb) ;
210
 
    
 
346
        vorbis_synthesis_blockin(&context->vd, &context->vb) ;
 
347
 
211
348
    total_samples = 0 ;
212
349
    total_bytes = 0 ;
213
350
 
214
351
    while((samples = vorbis_synthesis_pcmout(&context->vd, &pcm)) > 0) {
215
 
        conv(samples, pcm, (char*)data + total_bytes, context->vi.channels) ;
216
 
        total_bytes += samples * 2 * context->vi.channels ;
217
 
        total_samples += samples ;
 
352
        conv(samples, pcm, (char*)data + total_bytes, context->vi.channels) ;
 
353
        total_bytes += samples * 2 * context->vi.channels ;
 
354
        total_samples += samples ;
218
355
        vorbis_synthesis_read(&context->vd, samples) ;
219
356
    }
220
357
 
221
 
    *data_size = total_bytes ;   
 
358
    *data_size = total_bytes ;
222
359
    return buf_size ;
223
360
}
224
361
 
225
362
 
226
363
static int oggvorbis_decode_close(AVCodecContext *avccontext) {
227
364
    OggVorbisContext *context = avccontext->priv_data ;
228
 
   
 
365
 
229
366
    vorbis_info_clear(&context->vi) ;
230
367
    vorbis_comment_clear(&context->vc) ;
231
368
 
242
379
    NULL,
243
380
    oggvorbis_decode_close,
244
381
    oggvorbis_decode_frame,
 
382
    .capabilities= CODEC_CAP_DELAY,
245
383
} ;