]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/alacenc.c
png: check bit depth for PAL8/Y400A pixel formats.
[ffmpeg] / libavcodec / alacenc.c
index 9e632aeca100f94a41b124a7e757f81151521059..405b85724ec82fe32a3c2145dd4b6265c27709ba 100644 (file)
@@ -22,6 +22,7 @@
 #include "avcodec.h"
 #include "put_bits.h"
 #include "dsputil.h"
+#include "internal.h"
 #include "lpc.h"
 #include "mathops.h"
 
@@ -58,6 +59,8 @@ typedef struct AlacLPCContext {
 } AlacLPCContext;
 
 typedef struct AlacEncodeContext {
+    int frame_size;                     /**< current frame size               */
+    int verbatim;                       /**< current frame verbatim mode flag */
     int compression_level;
     int min_prediction_order;
     int max_prediction_order;
@@ -82,7 +85,7 @@ static void init_sample_buffers(AlacEncodeContext *s,
 
     for (ch = 0; ch < s->avctx->channels; ch++) {
         const int16_t *sptr = input_samples + ch;
-        for (i = 0; i < s->avctx->frame_size; i++) {
+        for (i = 0; i < s->frame_size; i++) {
             s->sample_buf[ch][i] = *sptr;
             sptr += s->avctx->channels;
         }
@@ -117,14 +120,20 @@ static void encode_scalar(AlacEncodeContext *s, int x,
     }
 }
 
-static void write_frame_header(AlacEncodeContext *s, int is_verbatim)
+static void write_frame_header(AlacEncodeContext *s)
 {
+    int encode_fs = 0;
+
+    if (s->frame_size < DEFAULT_FRAME_SIZE)
+        encode_fs = 1;
+
     put_bits(&s->pbctx, 3,  s->avctx->channels-1);  // No. of channels -1
     put_bits(&s->pbctx, 16, 0);                     // Seems to be zero
-    put_bits(&s->pbctx, 1,  1);                     // Sample count is in the header
+    put_bits(&s->pbctx, 1,  encode_fs);             // Sample count is in the header
     put_bits(&s->pbctx, 2,  0);                     // FIXME: Wasted bytes field
-    put_bits(&s->pbctx, 1,  is_verbatim);           // Audio block is verbatim
-    put_bits32(&s->pbctx, s->avctx->frame_size);    // No. of samples in the frame
+    put_bits(&s->pbctx, 1,  s->verbatim);           // Audio block is verbatim
+    if (encode_fs)
+        put_bits32(&s->pbctx, s->frame_size);       // No. of samples in the frame
 }
 
 static void calc_predictor_params(AlacEncodeContext *s, int ch)
@@ -144,7 +153,7 @@ static void calc_predictor_params(AlacEncodeContext *s, int ch)
         s->lpc[ch].lpc_coeff[5] =  -25;
     } else {
         opt_order = ff_lpc_calc_coefs(&s->lpc_ctx, s->sample_buf[ch],
-                                      s->avctx->frame_size,
+                                      s->frame_size,
                                       s->min_prediction_order,
                                       s->max_prediction_order,
                                       ALAC_MAX_LPC_PRECISION, coefs, shift,
@@ -193,7 +202,7 @@ static int estimate_stereo_mode(int32_t *left_ch, int32_t *right_ch, int n)
 static void alac_stereo_decorrelation(AlacEncodeContext *s)
 {
     int32_t *left = s->sample_buf[0], *right = s->sample_buf[1];
-    int i, mode, n = s->avctx->frame_size;
+    int i, mode, n = s->frame_size;
     int32_t tmp;
 
     mode = estimate_stereo_mode(left, right, n);
@@ -238,7 +247,7 @@ static void alac_linear_predictor(AlacEncodeContext *s, int ch)
     if (lpc.lpc_order == 31) {
         s->predictor_buf[0] = s->sample_buf[ch][0];
 
-        for (i = 1; i < s->avctx->frame_size; i++) {
+        for (i = 1; i < s->frame_size; i++) {
             s->predictor_buf[i] = s->sample_buf[ch][i    ] -
                                   s->sample_buf[ch][i - 1];
         }
@@ -258,7 +267,7 @@ static void alac_linear_predictor(AlacEncodeContext *s, int ch)
             residual[i] = samples[i] - samples[i-1];
 
         // perform lpc on remaining samples
-        for (i = lpc.lpc_order + 1; i < s->avctx->frame_size; i++) {
+        for (i = lpc.lpc_order + 1; i < s->frame_size; i++) {
             int sum = 1 << (lpc.lpc_quant - 1), res_val, j;
 
             for (j = 0; j < lpc.lpc_order; j++) {
@@ -300,7 +309,7 @@ static void alac_entropy_coder(AlacEncodeContext *s)
     int sign_modifier = 0, i, k;
     int32_t *samples = s->predictor_buf;
 
-    for (i = 0; i < s->avctx->frame_size;) {
+    for (i = 0; i < s->frame_size;) {
         int x;
 
         k = av_log2((history >> 9) + 3);
@@ -320,12 +329,12 @@ static void alac_entropy_coder(AlacEncodeContext *s)
         if (x > 0xFFFF)
             history = 0xFFFF;
 
-        if (history < 128 && i < s->avctx->frame_size) {
+        if (history < 128 && i < s->frame_size) {
             unsigned int block_size = 0;
 
             k = 7 - av_log2(history) + ((history + 16) >> 6);
 
-            while (*samples == 0 && i < s->avctx->frame_size) {
+            while (*samples == 0 && i < s->frame_size) {
                 samples++;
                 i++;
                 block_size++;
@@ -338,43 +347,65 @@ static void alac_entropy_coder(AlacEncodeContext *s)
     }
 }
 
-static void write_compressed_frame(AlacEncodeContext *s)
+static int write_frame(AlacEncodeContext *s, AVPacket *avpkt,
+                       const int16_t *samples)
 {
     int i, j;
     int prediction_type = 0;
+    PutBitContext *pb = &s->pbctx;
 
-    if (s->avctx->channels == 2)
-        alac_stereo_decorrelation(s);
-    put_bits(&s->pbctx, 8, s->interlacing_shift);
-    put_bits(&s->pbctx, 8, s->interlacing_leftweight);
-
-    for (i = 0; i < s->avctx->channels; i++) {
-        calc_predictor_params(s, i);
+    init_put_bits(pb, avpkt->data, avpkt->size);
 
-        put_bits(&s->pbctx, 4, prediction_type);
-        put_bits(&s->pbctx, 4, s->lpc[i].lpc_quant);
+    if (s->verbatim) {
+        write_frame_header(s);
+        for (i = 0; i < s->frame_size * s->avctx->channels; i++)
+            put_sbits(pb, 16, *samples++);
+    } else {
+        init_sample_buffers(s, samples);
+        write_frame_header(s);
 
-        put_bits(&s->pbctx, 3, s->rc.rice_modifier);
-        put_bits(&s->pbctx, 5, s->lpc[i].lpc_order);
-        // predictor coeff. table
-        for (j = 0; j < s->lpc[i].lpc_order; j++)
-            put_sbits(&s->pbctx, 16, s->lpc[i].lpc_coeff[j]);
-    }
+        if (s->avctx->channels == 2)
+            alac_stereo_decorrelation(s);
+        put_bits(pb, 8, s->interlacing_shift);
+        put_bits(pb, 8, s->interlacing_leftweight);
 
-    // apply lpc and entropy coding to audio samples
+        for (i = 0; i < s->avctx->channels; i++) {
+            calc_predictor_params(s, i);
 
-    for (i = 0; i < s->avctx->channels; i++) {
-        alac_linear_predictor(s, i);
+            put_bits(pb, 4, prediction_type);
+            put_bits(pb, 4, s->lpc[i].lpc_quant);
 
-        // TODO: determine when this will actually help. for now it's not used.
-        if (prediction_type == 15) {
-            // 2nd pass 1st order filter
-            for (j = s->avctx->frame_size - 1; j > 0; j--)
-                s->predictor_buf[j] -= s->predictor_buf[j - 1];
+            put_bits(pb, 3, s->rc.rice_modifier);
+            put_bits(pb, 5, s->lpc[i].lpc_order);
+            // predictor coeff. table
+            for (j = 0; j < s->lpc[i].lpc_order; j++)
+                put_sbits(pb, 16, s->lpc[i].lpc_coeff[j]);
         }
 
-        alac_entropy_coder(s);
+        // apply lpc and entropy coding to audio samples
+
+        for (i = 0; i < s->avctx->channels; i++) {
+            alac_linear_predictor(s, i);
+
+            // TODO: determine when this will actually help. for now it's not used.
+            if (prediction_type == 15) {
+                // 2nd pass 1st order filter
+                for (j = s->frame_size - 1; j > 0; j--)
+                    s->predictor_buf[j] -= s->predictor_buf[j - 1];
+            }
+
+            alac_entropy_coder(s);
+        }
     }
+    put_bits(pb, 3, 7);
+    flush_put_bits(pb);
+    return put_bits_count(pb) >> 3;
+}
+
+static av_always_inline int get_max_frame_size(int frame_size, int ch, int bps)
+{
+    int header_bits = 23 + 32 * (frame_size < DEFAULT_FRAME_SIZE);
+    return FFALIGN(header_bits + bps * ch * frame_size + 3, 8) / 8;
 }
 
 static av_cold int alac_encode_close(AVCodecContext *avctx)
@@ -393,7 +424,7 @@ static av_cold int alac_encode_init(AVCodecContext *avctx)
     int ret;
     uint8_t *alac_extradata;
 
-    avctx->frame_size = DEFAULT_FRAME_SIZE;
+    avctx->frame_size = s->frame_size = DEFAULT_FRAME_SIZE;
 
     if (avctx->sample_fmt != AV_SAMPLE_FMT_S16) {
         av_log(avctx, AV_LOG_ERROR, "only pcm_s16 input samples are supported\n");
@@ -420,8 +451,9 @@ static av_cold int alac_encode_init(AVCodecContext *avctx)
     s->rc.k_modifier      = 14;
     s->rc.rice_modifier   = 4;
 
-    s->max_coded_frame_size = 8 + (avctx->frame_size * avctx->channels *
-                                   DEFAULT_SAMPLE_SIZE >> 3);
+    s->max_coded_frame_size = get_max_frame_size(avctx->frame_size,
+                                                 avctx->channels,
+                                                 DEFAULT_SAMPLE_SIZE);
 
     // FIXME: consider wasted_bytes
     s->write_sample_size  = DEFAULT_SAMPLE_SIZE + avctx->channels - 1;
@@ -505,50 +537,40 @@ error:
     return ret;
 }
 
-static int alac_encode_frame(AVCodecContext *avctx, uint8_t *frame,
-                             int buf_size, void *data)
+static int alac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
+                             const AVFrame *frame, int *got_packet_ptr)
 {
     AlacEncodeContext *s = avctx->priv_data;
-    PutBitContext *pb = &s->pbctx;
-    int i, out_bytes, verbatim_flag = 0;
+    int out_bytes, max_frame_size, ret;
+    const int16_t *samples = (const int16_t *)frame->data[0];
 
-    if (buf_size < 2 * s->max_coded_frame_size) {
-        av_log(avctx, AV_LOG_ERROR, "buffer size is too small\n");
-        return -1;
-    }
+    s->frame_size = frame->nb_samples;
 
-verbatim:
-    init_put_bits(pb, frame, buf_size);
+    if (avctx->frame_size < DEFAULT_FRAME_SIZE)
+        max_frame_size = get_max_frame_size(s->frame_size, avctx->channels,
+                                            DEFAULT_SAMPLE_SIZE);
+    else
+        max_frame_size = s->max_coded_frame_size;
 
-    if (s->compression_level == 0 || verbatim_flag) {
-        // Verbatim mode
-        const int16_t *samples = data;
-        write_frame_header(s, 1);
-        for (i = 0; i < avctx->frame_size * avctx->channels; i++) {
-            put_sbits(pb, 16, *samples++);
-        }
-    } else {
-        init_sample_buffers(s, data);
-        write_frame_header(s, 0);
-        write_compressed_frame(s);
+    if ((ret = ff_alloc_packet(avpkt, 2 * max_frame_size))) {
+        av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
+        return ret;
     }
 
-    put_bits(pb, 3, 7);
-    flush_put_bits(pb);
-    out_bytes = put_bits_count(pb) >> 3;
+    /* use verbatim mode for compression_level 0 */
+    s->verbatim = !s->compression_level;
 
-    if (out_bytes > s->max_coded_frame_size) {
+    out_bytes = write_frame(s, avpkt, samples);
+
+    if (out_bytes > max_frame_size) {
         /* frame too large. use verbatim mode */
-        if (verbatim_flag || s->compression_level == 0) {
-            /* still too large. must be an error. */
-            av_log(avctx, AV_LOG_ERROR, "error encoding frame\n");
-            return -1;
-        }
-        verbatim_flag = 1;
-        goto verbatim;
+        s->verbatim = 1;
+        out_bytes = write_frame(s, avpkt, samples);
     }
 
-    return out_bytes;
+    avpkt->size = out_bytes;
+    *got_packet_ptr = 1;
+    return 0;
 }
 
 AVCodec ff_alac_encoder = {
@@ -557,7 +579,7 @@ AVCodec ff_alac_encoder = {
     .id             = CODEC_ID_ALAC,
     .priv_data_size = sizeof(AlacEncodeContext),
     .init           = alac_encode_init,
-    .encode         = alac_encode_frame,
+    .encode2        = alac_encode_frame,
     .close          = alac_encode_close,
     .capabilities   = CODEC_CAP_SMALL_LAST_FRAME,
     .sample_fmts    = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,