Commit 764852d6 authored by Justin Ruggles's avatar Justin Ruggles

alacenc: use AVCodec.encode2()

parent bee80054
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
#include "avcodec.h" #include "avcodec.h"
#include "put_bits.h" #include "put_bits.h"
#include "dsputil.h" #include "dsputil.h"
#include "internal.h"
#include "lpc.h" #include "lpc.h"
#include "mathops.h" #include "mathops.h"
...@@ -346,14 +347,14 @@ static void alac_entropy_coder(AlacEncodeContext *s) ...@@ -346,14 +347,14 @@ static void alac_entropy_coder(AlacEncodeContext *s)
} }
} }
static int write_frame(AlacEncodeContext *s, uint8_t *data, int size, static int write_frame(AlacEncodeContext *s, AVPacket *avpkt,
const int16_t *samples) const int16_t *samples)
{ {
int i, j; int i, j;
int prediction_type = 0; int prediction_type = 0;
PutBitContext *pb = &s->pbctx; PutBitContext *pb = &s->pbctx;
init_put_bits(pb, data, size); init_put_bits(pb, avpkt->data, avpkt->size);
if (s->verbatim) { if (s->verbatim) {
write_frame_header(s); write_frame_header(s);
...@@ -536,13 +537,14 @@ error: ...@@ -536,13 +537,14 @@ error:
return ret; return ret;
} }
static int alac_encode_frame(AVCodecContext *avctx, uint8_t *frame, static int alac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
int buf_size, void *data) const AVFrame *frame, int *got_packet_ptr)
{ {
AlacEncodeContext *s = avctx->priv_data; AlacEncodeContext *s = avctx->priv_data;
int out_bytes, max_frame_size; int out_bytes, max_frame_size, ret;
const int16_t *samples = (const int16_t *)frame->data[0];
s->frame_size = avctx->frame_size; s->frame_size = frame->nb_samples;
if (avctx->frame_size < DEFAULT_FRAME_SIZE) if (avctx->frame_size < DEFAULT_FRAME_SIZE)
max_frame_size = get_max_frame_size(s->frame_size, avctx->channels, max_frame_size = get_max_frame_size(s->frame_size, avctx->channels,
...@@ -550,23 +552,25 @@ static int alac_encode_frame(AVCodecContext *avctx, uint8_t *frame, ...@@ -550,23 +552,25 @@ static int alac_encode_frame(AVCodecContext *avctx, uint8_t *frame,
else else
max_frame_size = s->max_coded_frame_size; max_frame_size = s->max_coded_frame_size;
if (buf_size < 2 * max_frame_size) { if ((ret = ff_alloc_packet(avpkt, 2 * max_frame_size))) {
av_log(avctx, AV_LOG_ERROR, "buffer size is too small\n"); av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
return AVERROR(EINVAL); return ret;
} }
/* use verbatim mode for compression_level 0 */ /* use verbatim mode for compression_level 0 */
s->verbatim = !s->compression_level; s->verbatim = !s->compression_level;
out_bytes = write_frame(s, frame, buf_size, data); out_bytes = write_frame(s, avpkt, samples);
if (out_bytes > max_frame_size) { if (out_bytes > max_frame_size) {
/* frame too large. use verbatim mode */ /* frame too large. use verbatim mode */
s->verbatim = 1; s->verbatim = 1;
out_bytes = write_frame(s, frame, buf_size, data); out_bytes = write_frame(s, avpkt, samples);
} }
return out_bytes; avpkt->size = out_bytes;
*got_packet_ptr = 1;
return 0;
} }
AVCodec ff_alac_encoder = { AVCodec ff_alac_encoder = {
...@@ -575,7 +579,7 @@ AVCodec ff_alac_encoder = { ...@@ -575,7 +579,7 @@ AVCodec ff_alac_encoder = {
.id = CODEC_ID_ALAC, .id = CODEC_ID_ALAC,
.priv_data_size = sizeof(AlacEncodeContext), .priv_data_size = sizeof(AlacEncodeContext),
.init = alac_encode_init, .init = alac_encode_init,
.encode = alac_encode_frame, .encode2 = alac_encode_frame,
.close = alac_encode_close, .close = alac_encode_close,
.capabilities = CODEC_CAP_SMALL_LAST_FRAME, .capabilities = CODEC_CAP_SMALL_LAST_FRAME,
.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16, .sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment