diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-21 23:47:44 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-22 00:40:11 +0100 |
commit | 967facb6950549d0cc4e0ba79a056ebc6f93a049 (patch) | |
tree | 872266e5d486be0ab8cf9e378bf567c191fba71a /libavcodec/vorbisenc.c | |
parent | f1fdd208cc0a1fce7aaaf6b0fe72b013525f49e0 (diff) | |
parent | 6aba117f1273c7704312c6d892c9f552fa0661bb (diff) | |
download | ffmpeg-967facb6950549d0cc4e0ba79a056ebc6f93a049.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master: (26 commits)
adxenc: use AVCodec.encode2()
adxenc: Use the AVFrame in ADXContext for coded_frame
indeo4: fix out-of-bounds function call.
configure: Restructure help output.
configure: Internal-only components should not be command-line selectable.
vorbisenc: use AVCodec.encode2()
libvorbis: use AVCodec.encode2()
libopencore-amrnbenc: use AVCodec.encode2()
ra144enc: use AVCodec.encode2()
nellymoserenc: use AVCodec.encode2()
roqaudioenc: use AVCodec.encode2()
libspeex: use AVCodec.encode2()
libvo_amrwbenc: use AVCodec.encode2()
libvo_aacenc: use AVCodec.encode2()
wmaenc: use AVCodec.encode2()
mpegaudioenc: use AVCodec.encode2()
libmp3lame: use AVCodec.encode2()
libgsmenc: use AVCodec.encode2()
libfaac: use AVCodec.encode2()
g726enc: use AVCodec.encode2()
...
Conflicts:
configure
libavcodec/Makefile
libavcodec/ac3enc.c
libavcodec/adxenc.c
libavcodec/libgsm.c
libavcodec/libvorbis.c
libavcodec/vorbisenc.c
libavcodec/wmaenc.c
tests/ref/acodec/g722
tests/ref/lavf/asf
tests/ref/lavf/ffm
tests/ref/lavf/mkv
tests/ref/lavf/mpg
tests/ref/lavf/rm
tests/ref/lavf/ts
tests/ref/seek/lavf_asf
tests/ref/seek/lavf_ffm
tests/ref/seek/lavf_mkv
tests/ref/seek/lavf_mpg
tests/ref/seek/lavf_rm
tests/ref/seek/lavf_ts
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vorbisenc.c')
-rw-r--r-- | libavcodec/vorbisenc.c | 43 |
1 files changed, 31 insertions, 12 deletions
diff --git a/libavcodec/vorbisenc.c b/libavcodec/vorbisenc.c index dfb4c30e95..afc8f9d17d 100644 --- a/libavcodec/vorbisenc.c +++ b/libavcodec/vorbisenc.c @@ -27,6 +27,7 @@ #include <float.h> #include "avcodec.h" #include "dsputil.h" +#include "internal.h" #include "fft.h" #include "vorbis.h" #include "vorbis_enc_data.h" @@ -123,7 +124,7 @@ typedef struct { int nmodes; vorbis_enc_mode *modes; - int64_t sample_count; + int64_t next_pts; } vorbis_enc_context; #define MAX_CHANNELS 2 @@ -1014,23 +1015,27 @@ static int apply_window_and_mdct(vorbis_enc_context *venc, const signed short *a return 1; } -static int vorbis_encode_frame(AVCodecContext *avccontext, - unsigned char *packets, - int buf_size, void *data) +static int vorbis_encode_frame(AVCodecContext *avccontext, AVPacket *avpkt, + const AVFrame *frame, int *got_packet_ptr) { vorbis_enc_context *venc = avccontext->priv_data; - const signed short *audio = data; - int samples = data ? avccontext->frame_size : 0; + const int16_t *audio = frame ? (const int16_t *)frame->data[0] : NULL; + int samples = frame ? frame->nb_samples : 0; vorbis_enc_mode *mode; vorbis_enc_mapping *mapping; PutBitContext pb; - int i; + int i, ret; if (!apply_window_and_mdct(venc, audio, samples)) return 0; samples = 1 << (venc->log2_blocksize[0] - 1); - init_put_bits(&pb, packets, buf_size); + if ((ret = ff_alloc_packet(avpkt, 8192))) { + av_log(avccontext, AV_LOG_ERROR, "Error getting output packet\n"); + return ret; + } + + init_put_bits(&pb, avpkt->data, avpkt->size); if (pb.size_in_bits - put_bits_count(&pb) < 1 + ilog(venc->nmodes - 1)) { av_log(avccontext, AV_LOG_ERROR, "output buffer is too small\n"); @@ -1081,10 +1086,20 @@ static int vorbis_encode_frame(AVCodecContext *avccontext, return AVERROR(EINVAL); } - avccontext->coded_frame->pts = venc->sample_count; - venc->sample_count += avccontext->frame_size; flush_put_bits(&pb); - return put_bits_count(&pb) >> 3; + avpkt->size = put_bits_count(&pb) >> 3; + + avpkt->duration = ff_samples_to_time_base(avccontext, avccontext->frame_size); + if (frame) + if (frame->pts != AV_NOPTS_VALUE) + avpkt->pts = ff_samples_to_time_base(avccontext, frame->pts); + else + avpkt->pts = venc->next_pts; + if (avpkt->pts != AV_NOPTS_VALUE) + venc->next_pts = avpkt->pts + avpkt->duration; + + *got_packet_ptr = 1; + return 0; } @@ -1142,7 +1157,9 @@ static av_cold int vorbis_encode_close(AVCodecContext *avccontext) ff_mdct_end(&venc->mdct[0]); ff_mdct_end(&venc->mdct[1]); +#if FF_API_OLD_ENCODE_AUDIO av_freep(&avccontext->coded_frame); +#endif av_freep(&avccontext->extradata); return 0 ; @@ -1173,11 +1190,13 @@ static av_cold int vorbis_encode_init(AVCodecContext *avccontext) avccontext->frame_size = 1 << (venc->log2_blocksize[0] - 1); +#if FF_API_OLD_ENCODE_AUDIO avccontext->coded_frame = avcodec_alloc_frame(); if (!avccontext->coded_frame) { ret = AVERROR(ENOMEM); goto error; } +#endif return 0; error: @@ -1191,7 +1210,7 @@ AVCodec ff_vorbis_encoder = { .id = CODEC_ID_VORBIS, .priv_data_size = sizeof(vorbis_enc_context), .init = vorbis_encode_init, - .encode = vorbis_encode_frame, + .encode2 = vorbis_encode_frame, .close = vorbis_encode_close, .capabilities= CODEC_CAP_DELAY | CODEC_CAP_EXPERIMENTAL, .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE}, |