libavcodec/flacenc.c
9e96ab03
 /**
  * FLAC audio encoder
38c1a5c4
  * Copyright (c) 2006  Justin Ruggles <justin.ruggles@gmail.com>
9e96ab03
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
9e96ab03
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
9e96ab03
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
9e96ab03
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
9e96ab03
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
245976da
 #include "libavutil/crc.h"
a9f8587e
 #include "libavutil/md5.h"
188dea1d
 #include "libavutil/opt.h"
9e96ab03
 #include "avcodec.h"
9106a698
 #include "get_bits.h"
9e96ab03
 #include "golomb.h"
c50da3ad
 #include "lpc.h"
07d16e2e
 #include "flac.h"
d4df4e50
 #include "flacdata.h"
9e96ab03
 
 #define FLAC_SUBFRAME_CONSTANT  0
 #define FLAC_SUBFRAME_VERBATIM  1
 #define FLAC_SUBFRAME_FIXED     8
 #define FLAC_SUBFRAME_LPC      32
 
a403fc03
 #define MAX_FIXED_ORDER     4
 #define MAX_PARTITION_ORDER 8
 #define MAX_PARTITIONS     (1 << MAX_PARTITION_ORDER)
 #define MAX_LPC_PRECISION  15
 #define MAX_LPC_SHIFT      15
 #define MAX_RICE_PARAM     14
 
 typedef struct CompressionOptions {
     int compression_level;
     int block_time_ms;
188dea1d
     enum FFLPCType lpc_type;
23940f14
     int lpc_passes;
a403fc03
     int lpc_coeff_precision;
     int min_prediction_order;
     int max_prediction_order;
     int prediction_order_method;
     int min_partition_order;
     int max_partition_order;
 } CompressionOptions;
 
e71bcc37
 typedef struct RiceContext {
     int porder;
a403fc03
     int params[MAX_PARTITIONS];
e71bcc37
 } RiceContext;
 
9e96ab03
 typedef struct FlacSubframe {
     int type;
     int type_code;
     int obits;
     int order;
a403fc03
     int32_t coefs[MAX_LPC_ORDER];
     int shift;
e71bcc37
     RiceContext rc;
9e96ab03
     int32_t samples[FLAC_MAX_BLOCKSIZE];
0d2caa37
     int32_t residual[FLAC_MAX_BLOCKSIZE+1];
9e96ab03
 } FlacSubframe;
 
 typedef struct FlacFrame {
07d16e2e
     FlacSubframe subframes[FLAC_MAX_CHANNELS];
9e96ab03
     int blocksize;
     int bs_code[2];
     uint8_t crc8;
     int ch_mode;
0f5cc12c
     int verbatim_only;
9e96ab03
 } FlacFrame;
 
 typedef struct FlacEncodeContext {
188dea1d
     AVClass *class;
9e96ab03
     PutBitContext pb;
f1216221
     int channels;
     int samplerate;
9e96ab03
     int sr_code[2];
0bc08ed9
     int max_blocksize;
6682ae42
     int min_framesize;
f1216221
     int max_framesize;
6682ae42
     int max_encoded_framesize;
9e96ab03
     uint32_t frame_count;
e1a12934
     uint64_t sample_count;
a9f8587e
     uint8_t md5sum[16];
9e96ab03
     FlacFrame frame;
a403fc03
     CompressionOptions options;
e71bcc37
     AVCodecContext *avctx;
0d8837bd
     LPCContext lpc_ctx;
a9f8587e
     struct AVMD5 *md5ctx;
9e96ab03
 } FlacEncodeContext;
 
e35b689e
 
9e96ab03
 /**
e35b689e
  * Write streaminfo metadata block to byte array.
9e96ab03
  */
 static void write_streaminfo(FlacEncodeContext *s, uint8_t *header)
 {
     PutBitContext pb;
 
     memset(header, 0, FLAC_STREAMINFO_SIZE);
     init_put_bits(&pb, header, FLAC_STREAMINFO_SIZE);
 
     /* streaminfo metadata block */
0bc08ed9
     put_bits(&pb, 16, s->max_blocksize);
     put_bits(&pb, 16, s->max_blocksize);
6682ae42
     put_bits(&pb, 24, s->min_framesize);
9e96ab03
     put_bits(&pb, 24, s->max_framesize);
     put_bits(&pb, 20, s->samplerate);
     put_bits(&pb, 3, s->channels-1);
     put_bits(&pb, 5, 15);       /* bits per sample - 1 */
e1a12934
     /* write 36-bit sample count in 2 put_bits() calls */
     put_bits(&pb, 24, (s->sample_count & 0xFFFFFF000LL) >> 12);
     put_bits(&pb, 12,  s->sample_count & 0x000000FFFLL);
9e96ab03
     flush_put_bits(&pb);
a9f8587e
     memcpy(&header[18], s->md5sum, 16);
9e96ab03
 }
 
e35b689e
 
9e96ab03
 /**
e35b689e
  * Set blocksize based on samplerate.
  * Choose the closest predefined blocksize >= BLOCK_TIME_MS milliseconds.
9e96ab03
  */
a403fc03
 static int select_blocksize(int samplerate, int block_time_ms)
9e96ab03
 {
     int i;
     int target;
     int blocksize;
 
     assert(samplerate > 0);
d4df4e50
     blocksize = ff_flac_blocksize_table[1];
e35b689e
     target    = (samplerate * block_time_ms) / 1000;
     for (i = 0; i < 16; i++) {
         if (target >= ff_flac_blocksize_table[i] &&
             ff_flac_blocksize_table[i] > blocksize) {
d4df4e50
             blocksize = ff_flac_blocksize_table[i];
9e96ab03
         }
     }
     return blocksize;
 }
 
e35b689e
 
7fe0c7c8
 static av_cold void dprint_compression_options(FlacEncodeContext *s)
 {
     AVCodecContext     *avctx = s->avctx;
     CompressionOptions *opt   = &s->options;
 
     av_log(avctx, AV_LOG_DEBUG, " compression: %d\n", opt->compression_level);
 
     switch (opt->lpc_type) {
188dea1d
     case FF_LPC_TYPE_NONE:
7fe0c7c8
         av_log(avctx, AV_LOG_DEBUG, " lpc type: None\n");
         break;
188dea1d
     case FF_LPC_TYPE_FIXED:
7fe0c7c8
         av_log(avctx, AV_LOG_DEBUG, " lpc type: Fixed pre-defined coefficients\n");
         break;
188dea1d
     case FF_LPC_TYPE_LEVINSON:
7fe0c7c8
         av_log(avctx, AV_LOG_DEBUG, " lpc type: Levinson-Durbin recursion with Welch window\n");
         break;
188dea1d
     case FF_LPC_TYPE_CHOLESKY:
7fe0c7c8
         av_log(avctx, AV_LOG_DEBUG, " lpc type: Cholesky factorization, %d pass%s\n",
                opt->lpc_passes, opt->lpc_passes == 1 ? "" : "es");
         break;
     }
 
     av_log(avctx, AV_LOG_DEBUG, " prediction order: %d, %d\n",
            opt->min_prediction_order, opt->max_prediction_order);
 
     switch (opt->prediction_order_method) {
     case ORDER_METHOD_EST:
         av_log(avctx, AV_LOG_DEBUG, " order method: %s\n", "estimate");
         break;
     case ORDER_METHOD_2LEVEL:
         av_log(avctx, AV_LOG_DEBUG, " order method: %s\n", "2-level");
         break;
     case ORDER_METHOD_4LEVEL:
         av_log(avctx, AV_LOG_DEBUG, " order method: %s\n", "4-level");
         break;
     case ORDER_METHOD_8LEVEL:
         av_log(avctx, AV_LOG_DEBUG, " order method: %s\n", "8-level");
         break;
     case ORDER_METHOD_SEARCH:
         av_log(avctx, AV_LOG_DEBUG, " order method: %s\n", "full search");
         break;
     case ORDER_METHOD_LOG:
         av_log(avctx, AV_LOG_DEBUG, " order method: %s\n", "log search");
         break;
     }
 
 
     av_log(avctx, AV_LOG_DEBUG, " partition order: %d, %d\n",
            opt->min_partition_order, opt->max_partition_order);
 
     av_log(avctx, AV_LOG_DEBUG, " block size: %d\n", avctx->frame_size);
 
     av_log(avctx, AV_LOG_DEBUG, " lpc precision: %d\n",
            opt->lpc_coeff_precision);
 }
 
 
98a6fff9
 static av_cold int flac_encode_init(AVCodecContext *avctx)
9e96ab03
 {
     int freq = avctx->sample_rate;
     int channels = avctx->channels;
     FlacEncodeContext *s = avctx->priv_data;
7101b185
     int i, level, ret;
9e96ab03
     uint8_t *streaminfo;
 
e71bcc37
     s->avctx = avctx;
 
5d6e4c16
     if (avctx->sample_fmt != AV_SAMPLE_FMT_S16)
9e96ab03
         return -1;
 
e35b689e
     if (channels < 1 || channels > FLAC_MAX_CHANNELS)
9e96ab03
         return -1;
     s->channels = channels;
 
     /* find samplerate in table */
e35b689e
     if (freq < 1)
9e96ab03
         return -1;
e35b689e
     for (i = 4; i < 12; i++) {
         if (freq == ff_flac_sample_rate_table[i]) {
d4df4e50
             s->samplerate = ff_flac_sample_rate_table[i];
9e96ab03
             s->sr_code[0] = i;
             s->sr_code[1] = 0;
             break;
         }
     }
     /* if not in table, samplerate is non-standard */
e35b689e
     if (i == 12) {
         if (freq % 1000 == 0 && freq < 255000) {
9e96ab03
             s->sr_code[0] = 12;
             s->sr_code[1] = freq / 1000;
e35b689e
         } else if (freq % 10 == 0 && freq < 655350) {
9e96ab03
             s->sr_code[0] = 14;
             s->sr_code[1] = freq / 10;
e35b689e
         } else if (freq < 65535) {
9e96ab03
             s->sr_code[0] = 13;
             s->sr_code[1] = freq;
         } else {
             return -1;
         }
         s->samplerate = freq;
     }
 
a403fc03
     /* set compression option defaults based on avctx->compression_level */
e35b689e
     if (avctx->compression_level < 0)
a403fc03
         s->options.compression_level = 5;
e35b689e
     else
a403fc03
         s->options.compression_level = avctx->compression_level;
 
e35b689e
     level = s->options.compression_level;
     if (level > 12) {
a403fc03
         av_log(avctx, AV_LOG_ERROR, "invalid compression level: %d\n",
                s->options.compression_level);
         return -1;
     }
 
e35b689e
     s->options.block_time_ms = ((int[]){ 27, 27, 27,105,105,105,105,105,105,105,105,105,105})[level];
 
188dea1d
     if (s->options.lpc_type == FF_LPC_TYPE_DEFAULT)
         s->options.lpc_type  = ((int[]){ FF_LPC_TYPE_FIXED,    FF_LPC_TYPE_FIXED,    FF_LPC_TYPE_FIXED,
                                          FF_LPC_TYPE_LEVINSON, FF_LPC_TYPE_LEVINSON, FF_LPC_TYPE_LEVINSON,
                                          FF_LPC_TYPE_LEVINSON, FF_LPC_TYPE_LEVINSON, FF_LPC_TYPE_LEVINSON,
                                          FF_LPC_TYPE_LEVINSON, FF_LPC_TYPE_LEVINSON, FF_LPC_TYPE_LEVINSON,
                                          FF_LPC_TYPE_LEVINSON})[level];
e35b689e
 
     s->options.min_prediction_order = ((int[]){  2,  0,  0,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1})[level];
     s->options.max_prediction_order = ((int[]){  3,  4,  4,  6,  8,  8,  8,  8, 12, 12, 12, 32, 32})[level];
 
188dea1d
     if (s->options.prediction_order_method < 0)
         s->options.prediction_order_method = ((int[]){ ORDER_METHOD_EST,    ORDER_METHOD_EST,    ORDER_METHOD_EST,
                                                        ORDER_METHOD_EST,    ORDER_METHOD_EST,    ORDER_METHOD_EST,
                                                        ORDER_METHOD_4LEVEL, ORDER_METHOD_LOG,    ORDER_METHOD_4LEVEL,
                                                        ORDER_METHOD_LOG,    ORDER_METHOD_SEARCH, ORDER_METHOD_LOG,
                                                        ORDER_METHOD_SEARCH})[level];
e35b689e
 
188dea1d
     if (s->options.min_partition_order > s->options.max_partition_order) {
         av_log(avctx, AV_LOG_ERROR, "invalid partition orders: min=%d max=%d\n",
                s->options.min_partition_order, s->options.max_partition_order);
         return AVERROR(EINVAL);
     }
     if (s->options.min_partition_order < 0)
         s->options.min_partition_order = ((int[]){  2,  2,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0})[level];
     if (s->options.max_partition_order < 0)
         s->options.max_partition_order = ((int[]){  2,  2,  3,  3,  3,  8,  8,  8,  8,  8,  8,  8,  8})[level];
7c69b830
 
a403fc03
     /* set compression option overrides from AVCodecContext */
188dea1d
 #if FF_API_FLAC_GLOBAL_OPTS
     if (avctx->lpc_type > FF_LPC_TYPE_DEFAULT) {
         if (avctx->lpc_type > FF_LPC_TYPE_CHOLESKY) {
23940f14
             av_log(avctx, AV_LOG_ERROR, "unknown lpc type: %d\n", avctx->lpc_type);
             return -1;
         }
         s->options.lpc_type = avctx->lpc_type;
188dea1d
         if (s->options.lpc_type == FF_LPC_TYPE_CHOLESKY) {
23940f14
             if (avctx->lpc_passes < 0) {
                 // default number of passes for Cholesky
                 s->options.lpc_passes = 2;
             } else if (avctx->lpc_passes == 0) {
                 av_log(avctx, AV_LOG_ERROR, "invalid number of lpc passes: %d\n",
                        avctx->lpc_passes);
a403fc03
                 return -1;
23940f14
             } else {
                 s->options.lpc_passes = avctx->lpc_passes;
a403fc03
             }
23940f14
         }
     }
188dea1d
 #endif
23940f14
 
188dea1d
     if (s->options.lpc_type == FF_LPC_TYPE_NONE) {
23940f14
         s->options.min_prediction_order = 0;
     } else if (avctx->min_prediction_order >= 0) {
188dea1d
         if (s->options.lpc_type == FF_LPC_TYPE_FIXED) {
e35b689e
             if (avctx->min_prediction_order > MAX_FIXED_ORDER) {
a403fc03
                 av_log(avctx, AV_LOG_ERROR, "invalid min prediction order: %d\n",
                        avctx->min_prediction_order);
                 return -1;
             }
e35b689e
         } else if (avctx->min_prediction_order < MIN_LPC_ORDER ||
                    avctx->min_prediction_order > MAX_LPC_ORDER) {
23940f14
             av_log(avctx, AV_LOG_ERROR, "invalid min prediction order: %d\n",
                    avctx->min_prediction_order);
             return -1;
a403fc03
         }
         s->options.min_prediction_order = avctx->min_prediction_order;
     }
188dea1d
     if (s->options.lpc_type == FF_LPC_TYPE_NONE) {
23940f14
         s->options.max_prediction_order = 0;
     } else if (avctx->max_prediction_order >= 0) {
188dea1d
         if (s->options.lpc_type == FF_LPC_TYPE_FIXED) {
e35b689e
             if (avctx->max_prediction_order > MAX_FIXED_ORDER) {
a403fc03
                 av_log(avctx, AV_LOG_ERROR, "invalid max prediction order: %d\n",
                        avctx->max_prediction_order);
                 return -1;
             }
23940f14
         } else if (avctx->max_prediction_order < MIN_LPC_ORDER ||
                    avctx->max_prediction_order > MAX_LPC_ORDER) {
             av_log(avctx, AV_LOG_ERROR, "invalid max prediction order: %d\n",
                    avctx->max_prediction_order);
             return -1;
a403fc03
         }
         s->options.max_prediction_order = avctx->max_prediction_order;
     }
e35b689e
     if (s->options.max_prediction_order < s->options.min_prediction_order) {
a403fc03
         av_log(avctx, AV_LOG_ERROR, "invalid prediction orders: min=%d max=%d\n",
                s->options.min_prediction_order, s->options.max_prediction_order);
         return -1;
     }
 
188dea1d
 #if FF_API_FLAC_GLOBAL_OPTS
e35b689e
     if (avctx->prediction_order_method >= 0) {
         if (avctx->prediction_order_method > ORDER_METHOD_LOG) {
a403fc03
             av_log(avctx, AV_LOG_ERROR, "invalid prediction order method: %d\n",
                    avctx->prediction_order_method);
             return -1;
         }
         s->options.prediction_order_method = avctx->prediction_order_method;
     }
 
e35b689e
     if (avctx->min_partition_order >= 0) {
         if (avctx->min_partition_order > MAX_PARTITION_ORDER) {
a403fc03
             av_log(avctx, AV_LOG_ERROR, "invalid min partition order: %d\n",
                    avctx->min_partition_order);
             return -1;
         }
         s->options.min_partition_order = avctx->min_partition_order;
     }
e35b689e
     if (avctx->max_partition_order >= 0) {
         if (avctx->max_partition_order > MAX_PARTITION_ORDER) {
a403fc03
             av_log(avctx, AV_LOG_ERROR, "invalid max partition order: %d\n",
                    avctx->max_partition_order);
             return -1;
         }
         s->options.max_partition_order = avctx->max_partition_order;
     }
e35b689e
     if (s->options.max_partition_order < s->options.min_partition_order) {
a403fc03
         av_log(avctx, AV_LOG_ERROR, "invalid partition orders: min=%d max=%d\n",
                s->options.min_partition_order, s->options.max_partition_order);
         return -1;
     }
188dea1d
 #endif
a403fc03
 
e35b689e
     if (avctx->frame_size > 0) {
         if (avctx->frame_size < FLAC_MIN_BLOCKSIZE ||
c6375bf2
                 avctx->frame_size > FLAC_MAX_BLOCKSIZE) {
a403fc03
             av_log(avctx, AV_LOG_ERROR, "invalid block size: %d\n",
                    avctx->frame_size);
             return -1;
         }
     } else {
42ceeb5f
         s->avctx->frame_size = select_blocksize(s->samplerate, s->options.block_time_ms);
a403fc03
     }
0bc08ed9
     s->max_blocksize = s->avctx->frame_size;
a403fc03
 
188dea1d
 #if FF_API_FLAC_GLOBAL_OPTS
a403fc03
     /* set LPC precision */
e35b689e
     if (avctx->lpc_coeff_precision > 0) {
         if (avctx->lpc_coeff_precision > MAX_LPC_PRECISION) {
a403fc03
             av_log(avctx, AV_LOG_ERROR, "invalid lpc coeff precision: %d\n",
                    avctx->lpc_coeff_precision);
             return -1;
         }
         s->options.lpc_coeff_precision = avctx->lpc_coeff_precision;
     }
188dea1d
 #endif
9e96ab03
 
f33aa120
     /* set maximum encoded frame size in verbatim mode */
0fb2182d
     s->max_framesize = ff_flac_get_max_frame_size(s->avctx->frame_size,
                                                   s->channels, 16);
9e96ab03
 
a9f8587e
     /* initialize MD5 context */
     s->md5ctx = av_malloc(av_md5_size);
e35b689e
     if (!s->md5ctx)
2874c81c
         return AVERROR(ENOMEM);
a9f8587e
     av_md5_init(s->md5ctx);
 
9e96ab03
     streaminfo = av_malloc(FLAC_STREAMINFO_SIZE);
e08ec714
     if (!streaminfo)
         return AVERROR(ENOMEM);
9e96ab03
     write_streaminfo(s, streaminfo);
     avctx->extradata = streaminfo;
     avctx->extradata_size = FLAC_STREAMINFO_SIZE;
 
e35b689e
     s->frame_count   = 0;
b9b4fc5e
     s->min_framesize = s->max_framesize;
9e96ab03
 
     avctx->coded_frame = avcodec_alloc_frame();
e08ec714
     if (!avctx->coded_frame)
         return AVERROR(ENOMEM);
9e96ab03
 
6c936416
     if (channels == 3 &&
             avctx->channel_layout != (AV_CH_LAYOUT_STEREO|AV_CH_FRONT_CENTER) ||
         channels == 4 &&
             avctx->channel_layout != AV_CH_LAYOUT_2_2 &&
             avctx->channel_layout != AV_CH_LAYOUT_QUAD ||
         channels == 5 &&
             avctx->channel_layout != AV_CH_LAYOUT_5POINT0 &&
             avctx->channel_layout != AV_CH_LAYOUT_5POINT0_BACK ||
         channels == 6 &&
             avctx->channel_layout != AV_CH_LAYOUT_5POINT1 &&
             avctx->channel_layout != AV_CH_LAYOUT_5POINT1_BACK) {
         if (avctx->channel_layout) {
             av_log(avctx, AV_LOG_ERROR, "Channel layout not supported by Flac, "
                                              "output stream will have incorrect "
                                              "channel layout.\n");
         } else {
             av_log(avctx, AV_LOG_WARNING, "No channel layout specified. The encoder "
                                                "will use Flac channel layout for "
                                                "%d channels.\n", channels);
         }
     }
 
7101b185
     ret = ff_lpc_init(&s->lpc_ctx, avctx->frame_size,
188dea1d
                       s->options.max_prediction_order, FF_LPC_TYPE_LEVINSON);
7101b185
 
7fe0c7c8
     dprint_compression_options(s);
 
7101b185
     return ret;
9e96ab03
 }
 
e35b689e
 
f33aa120
 static void init_frame(FlacEncodeContext *s)
9e96ab03
 {
     int i, ch;
     FlacFrame *frame;
 
     frame = &s->frame;
 
e35b689e
     for (i = 0; i < 16; i++) {
         if (s->avctx->frame_size == ff_flac_blocksize_table[i]) {
             frame->blocksize  = ff_flac_blocksize_table[i];
9e96ab03
             frame->bs_code[0] = i;
             frame->bs_code[1] = 0;
             break;
         }
     }
e35b689e
     if (i == 16) {
42ceeb5f
         frame->blocksize = s->avctx->frame_size;
e35b689e
         if (frame->blocksize <= 256) {
9e96ab03
             frame->bs_code[0] = 6;
             frame->bs_code[1] = frame->blocksize-1;
         } else {
             frame->bs_code[0] = 7;
             frame->bs_code[1] = frame->blocksize-1;
         }
     }
 
e35b689e
     for (ch = 0; ch < s->channels; ch++)
9e96ab03
         frame->subframes[ch].obits = 16;
0f5cc12c
 
     frame->verbatim_only = 0;
9e96ab03
 }
 
e35b689e
 
9e96ab03
 /**
e35b689e
  * Copy channel-interleaved input samples into separate subframes.
9e96ab03
  */
edac49da
 static void copy_samples(FlacEncodeContext *s, const int16_t *samples)
9e96ab03
 {
     int i, j, ch;
     FlacFrame *frame;
 
     frame = &s->frame;
e35b689e
     for (i = 0, j = 0; i < frame->blocksize; i++)
         for (ch = 0; ch < s->channels; ch++, j++)
9e96ab03
             frame->subframes[ch].samples[i] = samples[j];
 }
 
e71bcc37
 
7c29a5de
 static int rice_count_exact(int32_t *res, int n, int k)
 {
     int i;
     int count = 0;
 
     for (i = 0; i < n; i++) {
         int32_t v = -2 * res[i] - 1;
         v ^= v >> 31;
         count += (v >> k) + 1 + k;
     }
     return count;
 }
 
 
 static int subframe_count_exact(FlacEncodeContext *s, FlacSubframe *sub,
                                 int pred_order)
 {
     int p, porder, psize;
     int i, part_end;
     int count = 0;
 
     /* subframe header */
     count += 8;
 
     /* subframe */
     if (sub->type == FLAC_SUBFRAME_CONSTANT) {
         count += sub->obits;
     } else if (sub->type == FLAC_SUBFRAME_VERBATIM) {
         count += s->frame.blocksize * sub->obits;
     } else {
         /* warm-up samples */
         count += pred_order * sub->obits;
 
         /* LPC coefficients */
         if (sub->type == FLAC_SUBFRAME_LPC)
             count += 4 + 5 + pred_order * s->options.lpc_coeff_precision;
 
         /* rice-encoded block */
         count += 2;
 
         /* partition order */
         porder = sub->rc.porder;
         psize  = s->frame.blocksize >> porder;
         count += 4;
 
         /* residual */
         i        = pred_order;
         part_end = psize;
         for (p = 0; p < 1 << porder; p++) {
             int k = sub->rc.params[p];
             count += 4;
             count += rice_count_exact(&sub->residual[i], part_end - i, k);
             i = part_end;
             part_end = FFMIN(s->frame.blocksize, part_end + psize);
         }
     }
 
     return count;
 }
 
 
e71bcc37
 #define rice_encode_count(sum, n, k) (((n)*((k)+1))+((sum-(n>>1))>>(k)))
 
14bd2a9f
 /**
e35b689e
  * Solve for d/dk(rice_encode_count) = n-((sum-(n>>1))>>(k+1)) = 0.
14bd2a9f
  */
e71bcc37
 static int find_optimal_param(uint32_t sum, int n)
 {
14bd2a9f
     int k;
     uint32_t sum2;
 
e35b689e
     if (sum <= n >> 1)
14bd2a9f
         return 0;
e35b689e
     sum2 = sum - (n >> 1);
     k    = av_log2(n < 256 ? FASTDIV(sum2, n) : sum2 / n);
14bd2a9f
     return FFMIN(k, MAX_RICE_PARAM);
e71bcc37
 }
 
e35b689e
 
e71bcc37
 static uint32_t calc_optimal_rice_params(RiceContext *rc, int porder,
                                          uint32_t *sums, int n, int pred_order)
 {
     int i;
     int k, cnt, part;
     uint32_t all_bits;
 
e35b689e
     part     = (1 << porder);
90f03441
     all_bits = 4 * part;
e71bcc37
 
     cnt = (n >> porder) - pred_order;
e35b689e
     for (i = 0; i < part; i++) {
e71bcc37
         k = find_optimal_param(sums[i], cnt);
         rc->params[i] = k;
         all_bits += rice_encode_count(sums[i], cnt, k);
90f03441
         cnt = n >> porder;
e71bcc37
     }
 
     rc->porder = porder;
 
     return all_bits;
 }
 
e35b689e
 
a403fc03
 static void calc_sums(int pmin, int pmax, uint32_t *data, int n, int pred_order,
                       uint32_t sums[][MAX_PARTITIONS])
e71bcc37
 {
     int i, j;
78f67b7a
     int parts;
     uint32_t *res, *res_end;
e71bcc37
 
     /* sums for highest level */
e35b689e
     parts   = (1 << pmax);
     res     = &data[pred_order];
78f67b7a
     res_end = &data[n >> pmax];
e35b689e
     for (i = 0; i < parts; i++) {
f6215b1b
         uint32_t sum = 0;
e35b689e
         while (res < res_end)
f6215b1b
             sum += *(res++);
         sums[pmax][i] = sum;
e35b689e
         res_end += n >> pmax;
e71bcc37
     }
     /* sums for lower levels */
e35b689e
     for (i = pmax - 1; i >= pmin; i--) {
e71bcc37
         parts = (1 << i);
e35b689e
         for (j = 0; j < parts; j++)
e71bcc37
             sums[i][j] = sums[i+1][2*j] + sums[i+1][2*j+1];
     }
 }
 
e35b689e
 
a403fc03
 static uint32_t calc_rice_params(RiceContext *rc, int pmin, int pmax,
                                  int32_t *data, int n, int pred_order)
e71bcc37
 {
     int i;
a403fc03
     uint32_t bits[MAX_PARTITION_ORDER+1];
e71bcc37
     int opt_porder;
a403fc03
     RiceContext tmp_rc;
e71bcc37
     uint32_t *udata;
a403fc03
     uint32_t sums[MAX_PARTITION_ORDER+1][MAX_PARTITIONS];
e71bcc37
 
a403fc03
     assert(pmin >= 0 && pmin <= MAX_PARTITION_ORDER);
     assert(pmax >= 0 && pmax <= MAX_PARTITION_ORDER);
     assert(pmin <= pmax);
e71bcc37
 
     udata = av_malloc(n * sizeof(uint32_t));
e35b689e
     for (i = 0; i < n; i++)
e71bcc37
         udata[i] = (2*data[i]) ^ (data[i]>>31);
 
a403fc03
     calc_sums(pmin, pmax, udata, n, pred_order, sums);
e71bcc37
 
a403fc03
     opt_porder = pmin;
     bits[pmin] = UINT32_MAX;
e35b689e
     for (i = pmin; i <= pmax; i++) {
a403fc03
         bits[i] = calc_optimal_rice_params(&tmp_rc, i, sums[i], n, pred_order);
e35b689e
         if (bits[i] <= bits[opt_porder]) {
e71bcc37
             opt_porder = i;
e35b689e
             *rc = tmp_rc;
e71bcc37
         }
     }
 
     av_freep(&udata);
a403fc03
     return bits[opt_porder];
e71bcc37
 }
 
e35b689e
 
1e5707b7
 static int get_max_p_order(int max_porder, int n, int order)
 {
     int porder = FFMIN(max_porder, av_log2(n^(n-1)));
e35b689e
     if (order > 0)
1e5707b7
         porder = FFMIN(porder, av_log2(n/order));
     return porder;
 }
 
e35b689e
 
675eb677
 static uint32_t find_subframe_rice_params(FlacEncodeContext *s,
089c18f3
                                           FlacSubframe *sub, int pred_order)
e71bcc37
 {
089c18f3
     int pmin = get_max_p_order(s->options.min_partition_order,
                                s->frame.blocksize, pred_order);
     int pmax = get_max_p_order(s->options.max_partition_order,
                                s->frame.blocksize, pred_order);
 
     uint32_t bits = 8 + pred_order * sub->obits + 2 + 4;
     if (sub->type == FLAC_SUBFRAME_LPC)
         bits += 4 + 5 + pred_order * s->options.lpc_coeff_precision;
     bits += calc_rice_params(&sub->rc, pmin, pmax, sub->residual,
                              s->frame.blocksize, pred_order);
e71bcc37
     return bits;
 }
 
e35b689e
 
a403fc03
 static void encode_residual_fixed(int32_t *res, const int32_t *smp, int n,
                                   int order)
e71bcc37
 {
     int i;
 
e35b689e
     for (i = 0; i < order; i++)
e71bcc37
         res[i] = smp[i];
 
e35b689e
     if (order == 0) {
         for (i = order; i < n; i++)
             res[i] = smp[i];
     } else if (order == 1) {
         for (i = order; i < n; i++)
             res[i] = smp[i] - smp[i-1];
     } else if (order == 2) {
a309dce7
         int a = smp[order-1] - smp[order-2];
e35b689e
         for (i = order; i < n; i += 2) {
             int b    = smp[i  ] - smp[i-1];
             res[i]   = b - a;
             a        = smp[i+1] - smp[i  ];
             res[i+1] = a - b;
a309dce7
         }
e35b689e
     } else if (order == 3) {
         int a = smp[order-1] -   smp[order-2];
a309dce7
         int c = smp[order-1] - 2*smp[order-2] + smp[order-3];
e35b689e
         for (i = order; i < n; i += 2) {
             int b    = smp[i  ] - smp[i-1];
             int d    = b - a;
             res[i]   = d - c;
             a        = smp[i+1] - smp[i  ];
             c        = a - b;
             res[i+1] = c - d;
a309dce7
         }
e35b689e
     } else {
         int a = smp[order-1] -   smp[order-2];
         int c = smp[order-1] - 2*smp[order-2] +   smp[order-3];
a309dce7
         int e = smp[order-1] - 3*smp[order-2] + 3*smp[order-3] - smp[order-4];
e35b689e
         for (i = order; i < n; i += 2) {
             int b    = smp[i  ] - smp[i-1];
             int d    = b - a;
             int f    = d - c;
             res[i  ] = f - e;
             a        = smp[i+1] - smp[i  ];
             c        = a - b;
             e        = c - d;
             res[i+1] = e - f;
a309dce7
         }
e71bcc37
     }
 }
 
e35b689e
 
dc44d4ad
 #define LPC1(x) {\
b8de3429
     int c = coefs[(x)-1];\
e35b689e
     p0   += c * s;\
     s     = smp[i-(x)+1];\
     p1   += c * s;\
dc44d4ad
 }
 
e35b689e
 static av_always_inline void encode_residual_lpc_unrolled(int32_t *res,
                                     const int32_t *smp, int n, int order,
                                     const int32_t *coefs, int shift, int big)
dc44d4ad
 {
     int i;
e35b689e
     for (i = order; i < n; i += 2) {
         int s  = smp[i-order];
b8de3429
         int p0 = 0, p1 = 0;
e35b689e
         if (big) {
             switch (order) {
             case 32: LPC1(32)
             case 31: LPC1(31)
             case 30: LPC1(30)
             case 29: LPC1(29)
             case 28: LPC1(28)
             case 27: LPC1(27)
             case 26: LPC1(26)
             case 25: LPC1(25)
             case 24: LPC1(24)
             case 23: LPC1(23)
             case 22: LPC1(22)
             case 21: LPC1(21)
             case 20: LPC1(20)
             case 19: LPC1(19)
             case 18: LPC1(18)
             case 17: LPC1(17)
             case 16: LPC1(16)
             case 15: LPC1(15)
             case 14: LPC1(14)
             case 13: LPC1(13)
             case 12: LPC1(12)
             case 11: LPC1(11)
             case 10: LPC1(10)
             case  9: LPC1( 9)
                      LPC1( 8)
                      LPC1( 7)
                      LPC1( 6)
                      LPC1( 5)
                      LPC1( 4)
                      LPC1( 3)
                      LPC1( 2)
                      LPC1( 1)
dc44d4ad
             }
         } else {
e35b689e
             switch (order) {
             case  8: LPC1( 8)
             case  7: LPC1( 7)
             case  6: LPC1( 6)
             case  5: LPC1( 5)
             case  4: LPC1( 4)
             case  3: LPC1( 3)
             case  2: LPC1( 2)
             case  1: LPC1( 1)
dc44d4ad
             }
         }
         res[i  ] = smp[i  ] - (p0 >> shift);
         res[i+1] = smp[i+1] - (p1 >> shift);
     }
 }
 
e35b689e
 
a403fc03
 static void encode_residual_lpc(int32_t *res, const int32_t *smp, int n,
                                 int order, const int32_t *coefs, int shift)
 {
dc44d4ad
     int i;
e35b689e
     for (i = 0; i < order; i++)
a403fc03
         res[i] = smp[i];
b250f9c6
 #if CONFIG_SMALL
e35b689e
     for (i = order; i < n; i += 2) {
dc44d4ad
         int j;
e35b689e
         int s  = smp[i];
b8de3429
         int p0 = 0, p1 = 0;
e35b689e
         for (j = 0; j < order; j++) {
b8de3429
             int c = coefs[j];
e35b689e
             p1   += c * s;
             s     = smp[i-j-1];
             p0   += c * s;
a403fc03
         }
b8de3429
         res[i  ] = smp[i  ] - (p0 >> shift);
f74471e0
         res[i+1] = smp[i+1] - (p1 >> shift);
a403fc03
     }
dc44d4ad
 #else
e35b689e
     switch (order) {
     case  1: encode_residual_lpc_unrolled(res, smp, n, 1, coefs, shift, 0); break;
     case  2: encode_residual_lpc_unrolled(res, smp, n, 2, coefs, shift, 0); break;
     case  3: encode_residual_lpc_unrolled(res, smp, n, 3, coefs, shift, 0); break;
     case  4: encode_residual_lpc_unrolled(res, smp, n, 4, coefs, shift, 0); break;
     case  5: encode_residual_lpc_unrolled(res, smp, n, 5, coefs, shift, 0); break;
     case  6: encode_residual_lpc_unrolled(res, smp, n, 6, coefs, shift, 0); break;
     case  7: encode_residual_lpc_unrolled(res, smp, n, 7, coefs, shift, 0); break;
     case  8: encode_residual_lpc_unrolled(res, smp, n, 8, coefs, shift, 0); break;
     default: encode_residual_lpc_unrolled(res, smp, n, order, coefs, shift, 1); break;
dc44d4ad
     }
 #endif
a403fc03
 }
 
e35b689e
 
93d65e3d
 static int encode_residual_ch(FlacEncodeContext *s, int ch)
e71bcc37
 {
a403fc03
     int i, n;
089c18f3
     int min_order, max_order, opt_order, omethod;
e71bcc37
     FlacFrame *frame;
     FlacSubframe *sub;
a403fc03
     int32_t coefs[MAX_LPC_ORDER][MAX_LPC_ORDER];
     int shift[MAX_LPC_ORDER];
e71bcc37
     int32_t *res, *smp;
 
15f537ed
     frame = &s->frame;
e35b689e
     sub   = &frame->subframes[ch];
     res   = sub->residual;
     smp   = sub->samples;
     n     = frame->blocksize;
e71bcc37
 
     /* CONSTANT */
e35b689e
     for (i = 1; i < n; i++)
         if(smp[i] != smp[0])
             break;
     if (i == n) {
e71bcc37
         sub->type = sub->type_code = FLAC_SUBFRAME_CONSTANT;
         res[0] = smp[0];
7c29a5de
         return subframe_count_exact(s, sub, 0);
e71bcc37
     }
 
     /* VERBATIM */
0f5cc12c
     if (frame->verbatim_only || n < 5) {
e71bcc37
         sub->type = sub->type_code = FLAC_SUBFRAME_VERBATIM;
43b3273e
         memcpy(res, smp, n * sizeof(int32_t));
7c29a5de
         return subframe_count_exact(s, sub, 0);
e71bcc37
     }
 
15f537ed
     min_order  = s->options.min_prediction_order;
     max_order  = s->options.max_prediction_order;
     omethod    = s->options.prediction_order_method;
e71bcc37
 
     /* FIXED */
089c18f3
     sub->type = FLAC_SUBFRAME_FIXED;
188dea1d
     if (s->options.lpc_type == FF_LPC_TYPE_NONE  ||
         s->options.lpc_type == FF_LPC_TYPE_FIXED || n <= max_order) {
a403fc03
         uint32_t bits[MAX_FIXED_ORDER+1];
e35b689e
         if (max_order > MAX_FIXED_ORDER)
             max_order = MAX_FIXED_ORDER;
a403fc03
         opt_order = 0;
e35b689e
         bits[0]   = UINT32_MAX;
         for (i = min_order; i <= max_order; i++) {
a403fc03
             encode_residual_fixed(res, smp, n, i);
675eb677
             bits[i] = find_subframe_rice_params(s, sub, i);
e35b689e
             if (bits[i] < bits[opt_order])
a403fc03
                 opt_order = i;
e71bcc37
         }
e35b689e
         sub->order     = opt_order;
a403fc03
         sub->type_code = sub->type | sub->order;
e35b689e
         if (sub->order != max_order) {
a403fc03
             encode_residual_fixed(res, smp, n, sub->order);
7c29a5de
             find_subframe_rice_params(s, sub, sub->order);
a403fc03
         }
7c29a5de
         return subframe_count_exact(s, sub, sub->order);
e71bcc37
     }
a403fc03
 
     /* LPC */
089c18f3
     sub->type = FLAC_SUBFRAME_LPC;
0d8837bd
     opt_order = ff_lpc_calc_coefs(&s->lpc_ctx, smp, n, min_order, max_order,
089c18f3
                                   s->options.lpc_coeff_precision, coefs, shift, s->options.lpc_type,
15f537ed
                                   s->options.lpc_passes, omethod,
23940f14
                                   MAX_LPC_SHIFT, 0);
26053bdc
 
e35b689e
     if (omethod == ORDER_METHOD_2LEVEL ||
         omethod == ORDER_METHOD_4LEVEL ||
         omethod == ORDER_METHOD_8LEVEL) {
26053bdc
         int levels = 1 << omethod;
79aec757
         uint32_t bits[1 << ORDER_METHOD_8LEVEL];
26053bdc
         int order;
e35b689e
         int opt_index   = levels-1;
         opt_order       = max_order-1;
26053bdc
         bits[opt_index] = UINT32_MAX;
e35b689e
         for (i = levels-1; i >= 0; i--) {
26053bdc
             order = min_order + (((max_order-min_order+1) * (i+1)) / levels)-1;
e35b689e
             if (order < 0)
                 order = 0;
26053bdc
             encode_residual_lpc(res, smp, n, order+1, coefs[order], shift[order]);
675eb677
             bits[i] = find_subframe_rice_params(s, sub, order+1);
e35b689e
             if (bits[i] < bits[opt_index]) {
26053bdc
                 opt_index = i;
                 opt_order = order;
             }
         }
         opt_order++;
e35b689e
     } else if (omethod == ORDER_METHOD_SEARCH) {
26053bdc
         // brute-force optimal order search
         uint32_t bits[MAX_LPC_ORDER];
         opt_order = 0;
e35b689e
         bits[0]   = UINT32_MAX;
         for (i = min_order-1; i < max_order; i++) {
26053bdc
             encode_residual_lpc(res, smp, n, i+1, coefs[i], shift[i]);
675eb677
             bits[i] = find_subframe_rice_params(s, sub, i+1);
e35b689e
             if (bits[i] < bits[opt_order])
26053bdc
                 opt_order = i;
         }
         opt_order++;
e35b689e
     } else if (omethod == ORDER_METHOD_LOG) {
dbb45a3b
         uint32_t bits[MAX_LPC_ORDER];
         int step;
 
e35b689e
         opt_order = min_order - 1 + (max_order-min_order)/3;
dbb45a3b
         memset(bits, -1, sizeof(bits));
 
e35b689e
         for (step = 16; step; step >>= 1) {
             int last = opt_order;
             for (i = last-step; i <= last+step; i += step) {
                 if (i < min_order-1 || i >= max_order || bits[i] < UINT32_MAX)
dbb45a3b
                     continue;
                 encode_residual_lpc(res, smp, n, i+1, coefs[i], shift[i]);
675eb677
                 bits[i] = find_subframe_rice_params(s, sub, i+1);
e35b689e
                 if (bits[i] < bits[opt_order])
                     opt_order = i;
dbb45a3b
             }
         }
         opt_order++;
26053bdc
     }
 
e35b689e
     sub->order     = opt_order;
a403fc03
     sub->type_code = sub->type | (sub->order-1);
e35b689e
     sub->shift     = shift[sub->order-1];
     for (i = 0; i < sub->order; i++)
a403fc03
         sub->coefs[i] = coefs[sub->order-1][i];
e35b689e
 
a403fc03
     encode_residual_lpc(res, smp, n, sub->order, sub->coefs, sub->shift);
e35b689e
 
7c29a5de
     find_subframe_rice_params(s, sub, sub->order);
 
     return subframe_count_exact(s, sub, sub->order);
e71bcc37
 }
 
e35b689e
 
93d65e3d
 static int count_frame_header(FlacEncodeContext *s)
 {
5e1166b3
     uint8_t av_unused tmp;
93d65e3d
     int count;
 
     /*
     <14> Sync code
     <1>  Reserved
     <1>  Blocking strategy
     <4>  Block size in inter-channel samples
     <4>  Sample rate
     <4>  Channel assignment
     <3>  Sample size in bits
     <1>  Reserved
     */
     count = 32;
 
     /* coded frame number */
     PUT_UTF8(s->frame_count, tmp, count += 8;)
 
     /* explicit block size */
d309f019
     if (s->frame.bs_code[0] == 6)
         count += 8;
     else if (s->frame.bs_code[0] == 7)
         count += 16;
93d65e3d
 
     /* explicit sample rate */
     count += ((s->sr_code[0] == 12) + (s->sr_code[0] > 12)) * 8;
 
     /* frame header CRC-8 */
     count += 8;
 
     return count;
 }
 
 
 static int encode_frame(FlacEncodeContext *s)
 {
     int ch, count;
 
     count = count_frame_header(s);
 
     for (ch = 0; ch < s->channels; ch++)
         count += encode_residual_ch(s, ch);
 
     count += (8 - (count & 7)) & 7; // byte alignment
     count += 16;                    // CRC-16
 
     return count >> 3;
 }
 
 
f33aa120
 static int estimate_stereo_mode(int32_t *left_ch, int32_t *right_ch, int n)
 {
     int i, best;
     int32_t lt, rt;
e71bcc37
     uint64_t sum[4];
f33aa120
     uint64_t score[4];
e71bcc37
     int k;
f33aa120
 
a403fc03
     /* calculate sum of 2nd order residual for each channel */
e71bcc37
     sum[0] = sum[1] = sum[2] = sum[3] = 0;
e35b689e
     for (i = 2; i < n; i++) {
         lt = left_ch[i]  - 2*left_ch[i-1]  + left_ch[i-2];
f33aa120
         rt = right_ch[i] - 2*right_ch[i-1] + right_ch[i-2];
c26abfa5
         sum[2] += FFABS((lt + rt) >> 1);
         sum[3] += FFABS(lt - rt);
         sum[0] += FFABS(lt);
         sum[1] += FFABS(rt);
e71bcc37
     }
a403fc03
     /* estimate bit counts */
e35b689e
     for (i = 0; i < 4; i++) {
         k      = find_optimal_param(2 * sum[i], n);
         sum[i] = rice_encode_count( 2 * sum[i], n, k);
f33aa120
     }
 
     /* calculate score for each mode */
e71bcc37
     score[0] = sum[0] + sum[1];
     score[1] = sum[0] + sum[3];
     score[2] = sum[1] + sum[3];
     score[3] = sum[2] + sum[3];
f33aa120
 
     /* return mode with lowest score */
     best = 0;
e35b689e
     for (i = 1; i < 4; i++)
         if (score[i] < score[best])
f33aa120
             best = i;
e35b689e
     if (best == 0) {
3159780b
         return FLAC_CHMODE_INDEPENDENT;
e35b689e
     } else if (best == 1) {
f33aa120
         return FLAC_CHMODE_LEFT_SIDE;
e35b689e
     } else if (best == 2) {
f33aa120
         return FLAC_CHMODE_RIGHT_SIDE;
     } else {
         return FLAC_CHMODE_MID_SIDE;
     }
 }
 
e35b689e
 
f33aa120
 /**
e35b689e
  * Perform stereo channel decorrelation.
f33aa120
  */
15f537ed
 static void channel_decorrelation(FlacEncodeContext *s)
f33aa120
 {
     FlacFrame *frame;
     int32_t *left, *right;
     int i, n;
 
15f537ed
     frame = &s->frame;
e35b689e
     n     = frame->blocksize;
f33aa120
     left  = frame->subframes[0].samples;
     right = frame->subframes[1].samples;
 
15f537ed
     if (s->channels != 2) {
3159780b
         frame->ch_mode = FLAC_CHMODE_INDEPENDENT;
f33aa120
         return;
     }
 
     frame->ch_mode = estimate_stereo_mode(left, right, n);
 
     /* perform decorrelation and adjust bits-per-sample */
e35b689e
     if (frame->ch_mode == FLAC_CHMODE_INDEPENDENT)
f33aa120
         return;
e35b689e
     if (frame->ch_mode == FLAC_CHMODE_MID_SIDE) {
f33aa120
         int32_t tmp;
e35b689e
         for (i = 0; i < n; i++) {
             tmp      = left[i];
             left[i]  = (tmp + right[i]) >> 1;
             right[i] =  tmp - right[i];
f33aa120
         }
         frame->subframes[1].obits++;
e35b689e
     } else if (frame->ch_mode == FLAC_CHMODE_LEFT_SIDE) {
         for (i = 0; i < n; i++)
f33aa120
             right[i] = left[i] - right[i];
         frame->subframes[1].obits++;
     } else {
e35b689e
         for (i = 0; i < n; i++)
f33aa120
             left[i] -= right[i];
         frame->subframes[0].obits++;
     }
 }
 
e35b689e
 
e71bcc37
 static void write_utf8(PutBitContext *pb, uint32_t val)
9e96ab03
 {
360932f7
     uint8_t tmp;
     PUT_UTF8(val, tmp, put_bits(pb, 8, tmp);)
9e96ab03
 }
 
e35b689e
 
6768beb4
 static void write_frame_header(FlacEncodeContext *s)
9e96ab03
 {
     FlacFrame *frame;
     int crc;
 
     frame = &s->frame;
 
     put_bits(&s->pb, 16, 0xFFF8);
     put_bits(&s->pb, 4, frame->bs_code[0]);
     put_bits(&s->pb, 4, s->sr_code[0]);
e35b689e
 
     if (frame->ch_mode == FLAC_CHMODE_INDEPENDENT)
ad52941f
         put_bits(&s->pb, 4, s->channels-1);
e35b689e
     else
9e96ab03
         put_bits(&s->pb, 4, frame->ch_mode);
e35b689e
 
9e96ab03
     put_bits(&s->pb, 3, 4); /* bits-per-sample code */
     put_bits(&s->pb, 1, 0);
     write_utf8(&s->pb, s->frame_count);
e35b689e
 
     if (frame->bs_code[0] == 6)
f33aa120
         put_bits(&s->pb, 8, frame->bs_code[1]);
e35b689e
     else if (frame->bs_code[0] == 7)
f33aa120
         put_bits(&s->pb, 16, frame->bs_code[1]);
e35b689e
 
     if (s->sr_code[0] == 12)
f33aa120
         put_bits(&s->pb, 8, s->sr_code[1]);
e35b689e
     else if (s->sr_code[0] > 12)
f33aa120
         put_bits(&s->pb, 16, s->sr_code[1]);
e35b689e
 
9e96ab03
     flush_put_bits(&s->pb);
e35b689e
     crc = av_crc(av_crc_get_table(AV_CRC_8_ATM), 0, s->pb.buf,
                  put_bits_count(&s->pb) >> 3);
9e96ab03
     put_bits(&s->pb, 8, crc);
 }
 
e35b689e
 
6768beb4
 static void write_subframes(FlacEncodeContext *s)
a403fc03
 {
520effb9
     int ch;
 
     for (ch = 0; ch < s->channels; ch++) {
         FlacSubframe *sub = &s->frame.subframes[ch];
eb96f169
         int i, p, porder, psize;
         int32_t *part_end;
         int32_t *res       =  sub->residual;
         int32_t *frame_end = &sub->residual[s->frame.blocksize];
6d263f41
 
520effb9
         /* subframe header */
         put_bits(&s->pb, 1, 0);
         put_bits(&s->pb, 6, sub->type_code);
         put_bits(&s->pb, 1, 0); /* no wasted bits */
 
         /* subframe */
eb96f169
         if (sub->type == FLAC_SUBFRAME_CONSTANT) {
             put_sbits(&s->pb, sub->obits, res[0]);
         } else if (sub->type == FLAC_SUBFRAME_VERBATIM) {
             while (res < frame_end)
                 put_sbits(&s->pb, sub->obits, *res++);
         } else {
             /* warm-up samples */
724f3471
             for (i = 0; i < sub->order; i++)
eb96f169
                 put_sbits(&s->pb, sub->obits, *res++);
 
             /* LPC coefficients */
             if (sub->type == FLAC_SUBFRAME_LPC) {
                 int cbits = s->options.lpc_coeff_precision;
                 put_bits( &s->pb, 4, cbits-1);
                 put_sbits(&s->pb, 5, sub->shift);
                 for (i = 0; i < sub->order; i++)
                     put_sbits(&s->pb, cbits, sub->coefs[i]);
             }
724f3471
 
eb96f169
             /* rice-encoded block */
             put_bits(&s->pb, 2, 0);
 
             /* partition order */
             porder  = sub->rc.porder;
             psize   = s->frame.blocksize >> porder;
             put_bits(&s->pb, 4, porder);
 
             /* residual */
             part_end  = &sub->residual[psize];
             for (p = 0; p < 1 << porder; p++) {
                 int k = sub->rc.params[p];
                 put_bits(&s->pb, 4, k);
                 while (res < part_end)
                     set_sr_golomb_flac(&s->pb, *res++, k, INT32_MAX, 0);
                 part_end = FFMIN(frame_end, part_end + psize);
             }
724f3471
         }
6d263f41
     }
9e96ab03
 }
 
e35b689e
 
6768beb4
 static void write_frame_footer(FlacEncodeContext *s)
9e96ab03
 {
     int crc;
     flush_put_bits(&s->pb);
e35b689e
     crc = av_bswap16(av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, s->pb.buf,
                             put_bits_count(&s->pb)>>3));
9e96ab03
     put_bits(&s->pb, 16, crc);
     flush_put_bits(&s->pb);
 }
 
e35b689e
 
b22f9d65
 static int write_frame(FlacEncodeContext *s, uint8_t *frame, int buf_size)
 {
     init_put_bits(&s->pb, frame, buf_size);
6768beb4
     write_frame_header(s);
     write_subframes(s);
     write_frame_footer(s);
b22f9d65
     return put_bits_count(&s->pb) >> 3;
 }
 
 
edac49da
 static void update_md5_sum(FlacEncodeContext *s, const int16_t *samples)
a9f8587e
 {
63613fe6
 #if HAVE_BIGENDIAN
a9f8587e
     int i;
e35b689e
     for (i = 0; i < s->frame.blocksize * s->channels; i++) {
8fc0162a
         int16_t smp = av_le2ne16(samples[i]);
a9f8587e
         av_md5_update(s->md5ctx, (uint8_t *)&smp, 2);
     }
 #else
edac49da
     av_md5_update(s->md5ctx, (const uint8_t *)samples, s->frame.blocksize*s->channels*2);
a9f8587e
 #endif
 }
 
e35b689e
 
9e96ab03
 static int flac_encode_frame(AVCodecContext *avctx, uint8_t *frame,
                              int buf_size, void *data)
 {
     FlacEncodeContext *s;
edac49da
     const int16_t *samples = data;
7c29a5de
     int frame_bytes, out_bytes;
9e96ab03
 
     s = avctx->priv_data;
 
e1a12934
     /* when the last block is reached, update the header in extradata */
     if (!data) {
6682ae42
         s->max_framesize = s->max_encoded_framesize;
a9f8587e
         av_md5_final(s->md5ctx, s->md5sum);
e1a12934
         write_streaminfo(s, avctx->extradata);
         return 0;
     }
 
2249a7f3
     /* change max_framesize for small final frame */
     if (avctx->frame_size < s->frame.blocksize) {
         s->max_framesize = ff_flac_get_max_frame_size(avctx->frame_size,
                                                       s->channels, 16);
     }
 
f33aa120
     init_frame(s);
9e96ab03
 
     copy_samples(s, samples);
 
f33aa120
     channel_decorrelation(s);
 
7c29a5de
     frame_bytes = encode_frame(s);
9e96ab03
 
b22f9d65
     /* fallback to verbatim mode if the compressed frame is larger than it
        would be if encoded uncompressed. */
3d2cd42f
     if (frame_bytes > s->max_framesize) {
0f5cc12c
         s->frame.verbatim_only = 1;
7c29a5de
         frame_bytes = encode_frame(s);
9e96ab03
     }
 
3d2cd42f
     if (buf_size < frame_bytes) {
         av_log(avctx, AV_LOG_ERROR, "output buffer too small\n");
         return 0;
     }
     out_bytes = write_frame(s, frame, buf_size);
 
9e96ab03
     s->frame_count++;
871a24f3
     avctx->coded_frame->pts = s->sample_count;
e1a12934
     s->sample_count += avctx->frame_size;
a9f8587e
     update_md5_sum(s, samples);
6682ae42
     if (out_bytes > s->max_encoded_framesize)
         s->max_encoded_framesize = out_bytes;
b9b4fc5e
     if (out_bytes < s->min_framesize)
         s->min_framesize = out_bytes;
e1a12934
 
9e96ab03
     return out_bytes;
 }
 
e35b689e
 
98a6fff9
 static av_cold int flac_encode_close(AVCodecContext *avctx)
9e96ab03
 {
a9f8587e
     if (avctx->priv_data) {
         FlacEncodeContext *s = avctx->priv_data;
         av_freep(&s->md5ctx);
7101b185
         ff_lpc_end(&s->lpc_ctx);
a9f8587e
     }
f33aa120
     av_freep(&avctx->extradata);
     avctx->extradata_size = 0;
9e96ab03
     av_freep(&avctx->coded_frame);
     return 0;
 }
 
188dea1d
 #define FLAGS AV_OPT_FLAG_ENCODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM
 static const AVOption options[] = {
880fa218
 { "lpc_coeff_precision", "LPC coefficient precision", offsetof(FlacEncodeContext, options.lpc_coeff_precision), FF_OPT_TYPE_INT, {.dbl = 15 }, 0, MAX_LPC_PRECISION, FLAGS },
 { "lpc_type", "LPC algorithm", offsetof(FlacEncodeContext, options.lpc_type), FF_OPT_TYPE_INT, {.dbl = FF_LPC_TYPE_DEFAULT }, FF_LPC_TYPE_DEFAULT, FF_LPC_TYPE_NB-1, FLAGS, "lpc_type" },
 { "none",     NULL, 0, FF_OPT_TYPE_CONST, {.dbl = FF_LPC_TYPE_NONE },     INT_MIN, INT_MAX, FLAGS, "lpc_type" },
 { "fixed",    NULL, 0, FF_OPT_TYPE_CONST, {.dbl = FF_LPC_TYPE_FIXED },    INT_MIN, INT_MAX, FLAGS, "lpc_type" },
 { "levinson", NULL, 0, FF_OPT_TYPE_CONST, {.dbl = FF_LPC_TYPE_LEVINSON }, INT_MIN, INT_MAX, FLAGS, "lpc_type" },
 { "cholesky", NULL, 0, FF_OPT_TYPE_CONST, {.dbl = FF_LPC_TYPE_CHOLESKY }, INT_MIN, INT_MAX, FLAGS, "lpc_type" },
 { "lpc_passes", "Number of passes to use for Cholesky factorization during LPC analysis", offsetof(FlacEncodeContext, options.lpc_passes),  FF_OPT_TYPE_INT, {.dbl = -1 }, INT_MIN, INT_MAX, FLAGS },
 { "min_partition_order",  NULL, offsetof(FlacEncodeContext, options.min_partition_order),  FF_OPT_TYPE_INT, {.dbl = -1 },      -1, MAX_PARTITION_ORDER, FLAGS },
 { "max_partition_order",  NULL, offsetof(FlacEncodeContext, options.max_partition_order),  FF_OPT_TYPE_INT, {.dbl = -1 },      -1, MAX_PARTITION_ORDER, FLAGS },
 { "prediction_order_method", "Search method for selecting prediction order", offsetof(FlacEncodeContext, options.prediction_order_method), FF_OPT_TYPE_INT, {.dbl = -1 }, -1, ORDER_METHOD_LOG, FLAGS, "predm" },
 { "estimation", NULL, 0, FF_OPT_TYPE_CONST, {.dbl = ORDER_METHOD_EST },    INT_MIN, INT_MAX, FLAGS, "predm" },
 { "2level",     NULL, 0, FF_OPT_TYPE_CONST, {.dbl = ORDER_METHOD_2LEVEL }, INT_MIN, INT_MAX, FLAGS, "predm" },
 { "4level",     NULL, 0, FF_OPT_TYPE_CONST, {.dbl = ORDER_METHOD_4LEVEL }, INT_MIN, INT_MAX, FLAGS, "predm" },
 { "8level",     NULL, 0, FF_OPT_TYPE_CONST, {.dbl = ORDER_METHOD_8LEVEL }, INT_MIN, INT_MAX, FLAGS, "predm" },
 { "search",     NULL, 0, FF_OPT_TYPE_CONST, {.dbl = ORDER_METHOD_SEARCH }, INT_MIN, INT_MAX, FLAGS, "predm" },
 { "log",        NULL, 0, FF_OPT_TYPE_CONST, {.dbl = ORDER_METHOD_LOG },    INT_MIN, INT_MAX, FLAGS, "predm" },
188dea1d
 { NULL },
 };
 
 static const AVClass flac_encoder_class = {
     "FLAC encoder",
     av_default_item_name,
     options,
     LIBAVUTIL_VERSION_INT,
 };
e35b689e
 
e7e2df27
 AVCodec ff_flac_encoder = {
9e96ab03
     "flac",
72415b2a
     AVMEDIA_TYPE_AUDIO,
9e96ab03
     CODEC_ID_FLAC,
     sizeof(FlacEncodeContext),
     flac_encode_init,
     flac_encode_frame,
     flac_encode_close,
     NULL,
7ba26252
     .capabilities = CODEC_CAP_SMALL_LAST_FRAME | CODEC_CAP_DELAY | CODEC_CAP_LOSSLESS,
5d6e4c16
     .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE},
fe4bf374
     .long_name = NULL_IF_CONFIG_SMALL("FLAC (Free Lossless Audio Codec)"),
188dea1d
     .priv_class = &flac_encoder_class,
9e96ab03
 };