40#define FLAC_SUBFRAME_CONSTANT 0
41#define FLAC_SUBFRAME_VERBATIM 1
42#define FLAC_SUBFRAME_FIXED 8
43#define FLAC_SUBFRAME_LPC 32
45#define MAX_FIXED_ORDER 4
46#define MAX_PARTITION_ORDER 8
47#define MAX_PARTITIONS (1 << MAX_PARTITION_ORDER)
48#define MAX_LPC_PRECISION 15
49#define MIN_LPC_SHIFT 0
50#define MAX_LPC_SHIFT 15
152 put_bits(&pb, 5,
s->avctx->bits_per_raw_sample - 1);
154 put_bits(&pb, 24, (
s->sample_count & 0xFFFFFF000LL) >> 12);
155 put_bits(&pb, 12,
s->sample_count & 0x000000FFFLL);
157 memcpy(&
header[18],
s->md5sum, 16);
176 count += ch * ((7+
bps+7)/8);
179 count += (( 2*
bps+1) * blocksize + 7) / 8;
181 count += ( ch*
bps * blocksize + 7) / 8;
201 target = (samplerate * block_time_ms) / 1000;
202 for (
i = 0;
i < 16;
i++) {
227 av_log(avctx,
AV_LOG_DEBUG,
" lpc type: Levinson-Durbin recursion with Welch window\n");
293 "encoding as 24 bits-per-sample, more is considered "
294 "experimental. Add -strict experimental if you want "
295 "to encode more than 24 bits-per-sample\n");
315 for (
i = 1;
i < 12;
i++) {
325 if (freq % 1000 == 0 && freq < 255000) {
327 s->sr_code[1] = freq / 1000;
328 }
else if (freq % 10 == 0 && freq < 655350) {
330 s->sr_code[1] = freq / 10;
331 }
else if (freq < 65535) {
333 s->sr_code[1] = freq;
334 }
else if (freq < 1048576) {
341 s->samplerate = freq;
346 s->options.compression_level = 5;
350 level =
s->options.compression_level;
353 s->options.compression_level);
357 s->options.block_time_ms = ((
int[]){ 27, 27, 27,105,105,105,105,105,105,105,105,105,105})[
level];
366 if (
s->options.min_prediction_order < 0)
367 s->options.min_prediction_order = ((
int[]){ 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1})[
level];
368 if (
s->options.max_prediction_order < 0)
369 s->options.max_prediction_order = ((
int[]){ 3, 4, 4, 6, 8, 8, 8, 8, 12, 12, 12, 32, 32})[
level];
371 if (
s->options.prediction_order_method < 0)
378 if (
s->options.min_partition_order >
s->options.max_partition_order) {
380 s->options.min_partition_order,
s->options.max_partition_order);
383 if (
s->options.min_partition_order < 0)
384 s->options.min_partition_order = ((
int[]){ 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})[
level];
385 if (
s->options.max_partition_order < 0)
386 s->options.max_partition_order = ((
int[]){ 2, 2, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8})[
level];
389 s->options.min_prediction_order = 0;
390 s->options.max_prediction_order = 0;
394 "invalid min prediction order %d, clamped to %d\n",
400 "invalid max prediction order %d, clamped to %d\n",
406 if (
s->options.max_prediction_order <
s->options.min_prediction_order) {
408 s->options.min_prediction_order,
s->options.max_prediction_order);
422 s->max_blocksize =
s->avctx->frame_size;
427 s->avctx->bits_per_raw_sample);
443 s->min_framesize =
s->max_framesize;
458 "output stream will have incorrect "
459 "channel layout.\n");
462 "will use Flac channel layout for "
486 for (
i = 0;
i < 16;
i++) {
490 frame->bs_code[1] = 0;
495 frame->blocksize = nb_samples;
496 if (
frame->blocksize <= 256) {
497 frame->bs_code[0] = 6;
500 frame->bs_code[0] = 7;
505 for (ch = 0; ch <
s->channels; ch++) {
509 sub->
obits =
s->avctx->bits_per_raw_sample;
517 frame->verbatim_only = 0;
529#define COPY_SAMPLES(bits, shift0) do { \
530 const int ## bits ## _t *samples0 = samples; \
531 const int shift = shift0; \
533 for (i = 0, j = 0; i < frame->blocksize; i++) \
534 for (ch = 0; ch < s->channels; ch++, j++) \
535 frame->subframes[ch].samples[i] = samples0[j] >> shift; \
550 for (
i = 0;
i < n;
i++) {
551 unsigned v = ((unsigned)(res[
i]) << 1) ^ (res[
i] >> 31);
552 count += (v >> k) + 1 + k;
561 int p, porder, psize;
575 count +=
s->frame.blocksize * sub->
obits;
578 count += pred_order * sub->
obits;
582 count += 4 + 5 + pred_order *
s->options.lpc_coeff_precision;
589 psize =
s->frame.blocksize >> porder;
595 for (p = 0; p < 1 << porder; p++) {
600 part_end =
FFMIN(
s->frame.blocksize, part_end + psize);
608#define rice_encode_count(sum, n, k) (((n)*((k)+1))+((sum-(n>>1))>>(k)))
620 sum2 = sum - (n >> 1);
622 return FFMIN(k, max_param);
631 for (k = 0; k <= max_param; k++) {
633 if (
bits < bestbits) {
644 int n,
int pred_order,
int max_param,
int exact)
650 part = (1 << porder);
653 cnt = (n >> porder) - pred_order;
654 for (
i = 0;
i < part;
i++) {
657 all_bits += sums[k][
i];
677 const uint32_t *res, *res_end;
682 for (k = 0; k <= kmax; k++) {
683 res = &
data[pred_order];
684 res_end = &
data[n >> pmax];
685 for (
i = 0;
i < parts;
i++) {
687 uint64_t sum = (1LL + k) * (res_end - res);
688 while (res < res_end)
689 sum += *(res++) >> k;
693 while (res < res_end)
697 res_end += n >> pmax;
705 int parts = (1 <<
level);
706 for (
i = 0;
i < parts;
i++) {
707 for (k=0; k<=kmax; k++)
708 sums[k][
i] = sums[k][2*
i] + sums[k][2*
i+1];
716 const int32_t *
data,
int n,
int pred_order,
int exact)
730 for (
i = pred_order;
i < n;
i++)
731 udata[
i] = ((
unsigned)(
data[
i]) << 1) ^ (
data[
i] >> 31);
733 calc_sum_top(pmax, exact ? kmax : 0, udata, n, pred_order, sums);
736 bits[pmin] = UINT32_MAX;
739 if (
bits[
i] <
bits[opt_porder] || pmax == pmin) {
748 return bits[opt_porder];
765 s->frame.blocksize, pred_order);
767 s->frame.blocksize, pred_order);
771 bits += 4 + 5 + pred_order *
s->options.lpc_coeff_precision;
773 s->frame.blocksize, pred_order,
s->options.exact_rice_parameters);
783 for (
i = 0;
i < order;
i++)
787 for (
i = order;
i < n;
i++)
789 }
else if (order == 1) {
790 for (
i = order;
i < n;
i++)
791 res[
i] = smp[
i] - smp[
i-1];
792 }
else if (order == 2) {
793 int a = smp[order-1] - smp[order-2];
794 for (
i = order;
i < n;
i += 2) {
795 int b = smp[
i ] - smp[
i-1];
797 a = smp[
i+1] - smp[
i ];
800 }
else if (order == 3) {
801 int a = smp[order-1] - smp[order-2];
802 int c = smp[order-1] - 2*smp[order-2] + smp[order-3];
803 for (
i = order;
i < n;
i += 2) {
804 int b = smp[
i ] - smp[
i-1];
807 a = smp[
i+1] - smp[
i ];
812 int a = smp[order-1] - smp[order-2];
813 int c = smp[order-1] - 2*smp[order-2] + smp[order-3];
814 int e = smp[order-1] - 3*smp[order-2] + 3*smp[order-3] - smp[order-4];
815 for (
i = order;
i < n;
i += 2) {
816 int b = smp[
i ] - smp[
i-1];
820 a = smp[
i+1] - smp[
i ];
834#define ENCODE_RESIDUAL_FIXED_WITH_RESIDUAL_LIMIT() \
836 for (int i = 0; i < order; i++) \
839 for (int i = order; i < n; i++) { \
840 if (smp[i] == INT32_MIN) \
844 } else if (order == 1) { \
845 for (int i = order; i < n; i++) { \
846 int64_t res64 = (int64_t)smp[i] - smp[i-1]; \
847 if (res64 <= INT32_MIN || res64 > INT32_MAX) \
851 } else if (order == 2) { \
852 for (int i = order; i < n; i++) { \
853 int64_t res64 = (int64_t)smp[i] - 2*(int64_t)smp[i-1] + smp[i-2]; \
854 if (res64 <= INT32_MIN || res64 > INT32_MAX) \
858 } else if (order == 3) { \
859 for (int i = order; i < n; i++) { \
860 int64_t res64 = (int64_t)smp[i] - 3*(int64_t)smp[i-1] + 3*(int64_t)smp[i-2] - smp[i-3]; \
861 if (res64 <= INT32_MIN || res64 > INT32_MAX) \
866 for (int i = order; i < n; i++) { \
867 int64_t res64 = (int64_t)smp[i] - 4*(int64_t)smp[i-1] + 6*(int64_t)smp[i-2] - 4*(int64_t)smp[i-3] + smp[i-4]; \
868 if (res64 <= INT32_MIN || res64 > INT32_MAX) \
889#define LPC_ENCODE_WITH_RESIDUAL_LIMIT() \
891 for (int i = 0; i < order; i++) \
893 for (int i = order; i < len; i++) { \
894 int64_t p = 0, tmp; \
895 for (int j = 0; j < order; j++) \
896 p += (int64_t)coefs[j]*smp[(i-1)-j]; \
899 if (tmp <= INT32_MIN || tmp > INT32_MAX) \
923 uint64_t max_residual_value = 0;
927 for (
int i = 0;
i < order;
i++)
928 max_residual_value +=
FFABS(max_sample_value * coefs[
i]);
929 max_residual_value >>=
shift;
930 max_residual_value += max_sample_value;
934 }
else if (max_residual_value > INT32_MAX) {
937 }
else if (
bps +
s->options.lpc_coeff_precision +
av_log2(order) <= 32) {
938 s->flac_dsp.lpc16_encode(res, smp,
len, order, coefs,
shift);
940 s->flac_dsp.lpc32_encode(res, smp,
len, order, coefs,
shift);
945#define DEFAULT_TO_VERBATIM() \
947 sub->type = sub->type_code = FLAC_SUBFRAME_VERBATIM; \
948 if (sub->obits <= 32) \
949 memcpy(res, smp, n * sizeof(int32_t)); \
950 return subframe_count_exact(s, sub, 0); \
956 int min_order, max_order, opt_order, omethod;
965 sub = &
frame->subframes[ch];
968 smp_33bps =
frame->samples_33bps;
969 n =
frame->blocksize;
972 if (sub->
obits > 32) {
973 for (
i = 1;
i < n;
i++)
974 if(smp_33bps[
i] != smp_33bps[0])
981 for (
i = 1;
i < n;
i++)
992 if (
frame->verbatim_only || n < 5) {
996 min_order =
s->options.min_prediction_order;
997 max_order =
s->options.max_prediction_order;
998 omethod =
s->options.prediction_order_method;
1008 bits[0] = UINT32_MAX;
1009 for (
i = min_order;
i <= max_order;
i++) {
1010 if (sub->
obits == 33) {
1013 }
else if (sub->
obits +
i >= 32) {
1022 if (opt_order == 0 &&
bits[0] == UINT32_MAX) {
1027 sub->
order = opt_order;
1029 if (sub->
order != max_order) {
1030 if (sub->
obits == 33)
1032 else if (sub->
obits +
i >= 32)
1043 if (sub->
obits == 33)
1048 for (
i = 0;
i < n;
i++)
1049 smp[
i] = smp_33bps[
i] >> 1;
1052 s->options.lpc_coeff_precision, coefs,
shift,
s->options.lpc_type,
1053 s->options.lpc_passes, omethod,
1059 int levels = 1 << omethod;
1062 int opt_index = levels-1;
1063 opt_order = max_order-1;
1064 bits[opt_index] = UINT32_MAX;
1065 for (
i = levels-1;
i >= 0;
i--) {
1066 int last_order = order;
1067 order = min_order + (((max_order-min_order+1) * (
i+1)) / levels)-1;
1068 order =
av_clip(order, min_order - 1, max_order - 1);
1069 if (order == last_order)
1084 bits[0] = UINT32_MAX;
1085 for (
i = min_order-1;
i < max_order;
i++) {
1097 opt_order = min_order - 1 + (max_order-min_order)/3;
1100 for (step = 16; step; step >>= 1) {
1101 int last = opt_order;
1102 for (
i = last-step;
i <= last+step;
i += step) {
1115 if (
s->options.multi_dim_quant) {
1117 int i, step, improved;
1118 int64_t best_score = INT64_MAX;
1121 qmax = (1 << (
s->options.lpc_coeff_precision - 1)) - 1;
1123 for (
i=0;
i<opt_order;
i++)
1128 for (step = 0; step < allsteps; step++) {
1134 for (
i=0;
i<opt_order;
i++) {
1135 int diff = ((
tmp + 1) % 3) - 1;
1136 lpc_try[
i] =
av_clip(coefs[opt_order - 1][
i] +
diff, -qmax, qmax);
1146 if (score < best_score) {
1148 memcpy(coefs[opt_order-1], lpc_try,
sizeof(*coefs));
1155 sub->
order = opt_order;
1194 if (
s->frame.bs_code[0] == 6)
1196 else if (
s->frame.bs_code[0] == 7)
1200 count += ((
s->sr_code[0] == 12) + (
s->sr_code[0] > 12) * 2) * 8;
1216 for (ch = 0; ch <
s->channels; ch++)
1219 count += (8 - (count & 7)) & 7;
1223 if (count > INT_MAX)
1231 int ch,
i, wasted_bits;
1233 for (ch = 0; ch <
s->channels; ch++) {
1236 if (sub->
obits > 32) {
1238 for (
i = 0;
i <
s->frame.blocksize;
i++) {
1239 v |=
s->frame.samples_33bps[
i];
1251 for (
i = 0;
i <
s->frame.blocksize;
i++)
1252 sub->
samples[
i] =
s->frame.samples_33bps[
i] >> v;
1256 for (
i = 0;
i <
s->frame.blocksize;
i++) {
1267 for (
i = 0;
i <
s->frame.blocksize;
i++)
1272 sub->
wasted = wasted_bits;
1273 sub->
obits -= wasted_bits;
1277 if (sub->
obits <= 17)
1284 int max_rice_param,
int bps)
1292 sum[0] = sum[1] = sum[2] = sum[3] = 0;
1295 for (
int i = 2;
i < n;
i++) {
1296 lt = left_ch[
i] - 2*left_ch[
i-1] + left_ch[
i-2];
1297 rt = right_ch[
i] - 2*right_ch[
i-1] + right_ch[
i-2];
1298 sum[2] +=
FFABS((lt + rt) >> 1);
1299 sum[3] +=
FFABS(lt - rt);
1300 sum[0] +=
FFABS(lt);
1301 sum[1] +=
FFABS(rt);
1305 for (
int i = 2;
i < n;
i++) {
1308 sum[2] +=
FFABS((lt + rt) >> 1);
1309 sum[3] +=
FFABS(lt - rt);
1310 sum[0] +=
FFABS(lt);
1311 sum[1] +=
FFABS(rt);
1315 for (
int i = 0;
i < 4;
i++) {
1321 score[0] = sum[0] + sum[1];
1322 score[1] = sum[0] + sum[3];
1323 score[2] = sum[1] + sum[3];
1324 score[3] = sum[2] + sum[3];
1328 for (
int i = 1;
i < 4;
i++)
1329 if (score[
i] < score[best])
1347 n =
frame->blocksize;
1349 right =
frame->subframes[1].samples;
1350 side_33bps =
frame->samples_33bps;
1352 if (
s->channels != 2) {
1357 if (
s->options.ch_mode < 0) {
1358 int max_rice_param = (1 <<
frame->subframes[0].rc.coding_mode) - 2;
1361 frame->ch_mode =
s->options.ch_mode;
1366 if(
s->avctx->bits_per_raw_sample == 32) {
1369 for (
int i = 0;
i < n;
i++) {
1372 side_33bps[
i] =
tmp - right[
i];
1374 frame->subframes[1].obits++;
1376 for (
int i = 0;
i < n;
i++)
1378 frame->subframes[1].obits++;
1380 for (
int i = 0;
i < n;
i++)
1382 frame->subframes[0].obits++;
1387 for (
int i = 0;
i < n;
i++) {
1390 right[
i] =
tmp - right[
i];
1392 frame->subframes[1].obits++;
1394 for (
int i = 0;
i < n;
i++)
1395 right[
i] =
left[
i] - right[
i];
1396 frame->subframes[1].obits++;
1398 for (
int i = 0;
i < n;
i++)
1400 frame->subframes[0].obits++;
1433 if (
frame->bs_code[0] == 6)
1435 else if (
frame->bs_code[0] == 7)
1438 if (
s->sr_code[0] == 12)
1440 else if (
s->sr_code[0] > 12)
1454 v = ((unsigned)(
i) << 1) ^ (
i >> 31);
1463 unsigned mask = UINT32_MAX >> (32-k);
1473 for (ch = 0; ch <
s->channels; ch++) {
1475 int p, porder, psize;
1489 if(sub->
obits == 33)
1491 else if(sub->
obits == 32)
1496 if (sub->
obits == 33) {
1497 int64_t *res64 =
s->frame.samples_33bps;
1498 int64_t *frame_end64 = &
s->frame.samples_33bps[
s->frame.blocksize];
1499 while (res64 < frame_end64)
1501 }
else if (sub->
obits == 32) {
1510 if (sub->
obits == 33) {
1511 for (
int i = 0;
i < sub->
order;
i++)
1514 }
else if (sub->
obits == 32) {
1515 for (
int i = 0;
i < sub->
order;
i++)
1518 for (
int i = 0;
i < sub->
order;
i++)
1524 int cbits =
s->options.lpc_coeff_precision;
1527 for (
int i = 0;
i < sub->
order;
i++)
1536 psize =
s->frame.blocksize >> porder;
1541 for (p = 0; p < 1 << porder; p++) {
1544 while (res < part_end)
1577 int buf_size =
s->frame.blocksize *
s->channels *
1578 ((
s->avctx->bits_per_raw_sample + 7) / 8);
1580 if (
s->avctx->bits_per_raw_sample > 16 || HAVE_BIGENDIAN) {
1586 if (
s->avctx->bits_per_raw_sample <= 16) {
1587 buf = (
const uint8_t *)samples;
1589 s->bdsp.bswap16_buf((uint16_t *)
s->md5_buffer,
1590 (
const uint16_t *) samples, buf_size / 2);
1591 buf =
s->md5_buffer;
1593 }
else if (
s->avctx->bits_per_raw_sample <= 24) {
1595 const int32_t *samples0 = samples;
1596 uint8_t *
tmp =
s->md5_buffer;
1598 for (
i = 0;
i <
s->frame.blocksize *
s->channels;
i++) {
1602 buf =
s->md5_buffer;
1606 const int32_t *samples0 = samples;
1607 uint8_t *
tmp =
s->md5_buffer;
1609 for (
i = 0;
i <
s->frame.blocksize *
s->channels;
i++)
1611 buf =
s->md5_buffer;
1623 int frame_bytes, out_bytes, ret;
1629 s->max_framesize =
s->max_encoded_framesize;
1640 avpkt->
pts =
s->next_pts;
1642 *got_packet_ptr = 1;
1650 if (
frame->nb_samples <
s->frame.blocksize) {
1668 if (frame_bytes < 0 || frame_bytes >
s->max_framesize) {
1669 s->frame.verbatim_only = 1;
1671 if (frame_bytes < 0) {
1683 s->sample_count +=
frame->nb_samples;
1688 if (out_bytes >
s->max_encoded_framesize)
1689 s->max_encoded_framesize = out_bytes;
1690 if (out_bytes < s->min_framesize)
1691 s->min_framesize = out_bytes;
1697 *got_packet_ptr = 1;
1712#define FLAGS AV_OPT_FLAG_ENCODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM
1715{
"lpc_type",
"LPC algorithm", offsetof(
FlacEncodeContext,
options.lpc_type),
AV_OPT_TYPE_INT, {.i64 =
FF_LPC_TYPE_DEFAULT },
FF_LPC_TYPE_DEFAULT,
FF_LPC_TYPE_NB-1,
FLAGS, .unit =
"lpc_type" },
1723{
"prediction_order_method",
"Search method for selecting prediction order", offsetof(
FlacEncodeContext,
options.prediction_order_method),
AV_OPT_TYPE_INT, {.i64 = -1 }, -1,
ORDER_METHOD_LOG,
FLAGS, .unit =
"predm" },
1730{
"ch_mode",
"Stereo decorrelation mode", offsetof(
FlacEncodeContext,
options.ch_mode),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1,
FLAC_CHMODE_MID_SIDE,
FLAGS, .unit =
"ch_mode" },
1745 .class_name =
"FLAC encoder",
static double val(void *priv, double ch)
const FFCodec ff_flac_encoder
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Libavcodec external API header.
static int BS_FUNC left(const BSCTX *bc)
Return the number of the bits left in a buffer.
#define i(width, name, range_min, range_max)
Public libavutil channel layout APIs header.
#define FF_CODEC_CAP_EOF_FLUSH
The encoder has AV_CODEC_CAP_DELAY set, but does not actually have delay - it only wants to be flushe...
#define FF_CODEC_ENCODE_CB(func)
#define CODEC_LONG_NAME(str)
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
#define CODEC_SAMPLEFMTS(...)
#define PUT_UTF8(val, tmp, PUT_BYTE)
Convert a 32-bit Unicode character to its UTF-8 encoded form (up to 4 bytes long).
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Public header for CRC hash function implementation.
#define FF_COMPLIANCE_EXPERIMENTAL
Allow nonstandardized experimental things.
int(* init)(AVBSFContext *ctx)
int ff_get_encode_buffer(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int flags)
Get a buffer for a packet.
static av_always_inline int64_t ff_samples_to_time_base(const AVCodecContext *avctx, int64_t samples)
Rescale from sample rate to AVCodecContext.time_base.
static const uint8_t bits[8]
FLAC (Free Lossless Audio Codec) common stuff.
#define FLAC_MAX_BLOCKSIZE
@ FLAC_CHMODE_INDEPENDENT
#define FLAC_MIN_BLOCKSIZE
#define FLAC_MAX_CHANNELS
#define FLAC_STREAMINFO_SIZE
const int ff_flac_sample_rate_table[16]
const int32_t ff_flac_blocksize_table[16]
av_cold void ff_flacencdsp_init(FLACEncDSPContext *c)
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
@ AV_OPT_TYPE_INT
Underlying C type is int.
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
#define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
This encoder can reorder user opaque values from input AVFrames and return them with corresponding ou...
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
#define AV_CODEC_CAP_SMALL_LAST_FRAME
Codec can be fed a final frame with a smaller size.
@ AV_PKT_DATA_NEW_EXTRADATA
The AV_PKT_DATA_NEW_EXTRADATA is used to notify the codec or the format that the extradata buffer was...
uint8_t * av_packet_new_side_data(AVPacket *pkt, enum AVPacketSideDataType type, size_t size)
Allocate new information of a packet.
void av_shrink_packet(AVPacket *pkt, int size)
Reduce packet size, correctly zeroing padding.
#define AV_CHANNEL_LAYOUT_5POINT1_BACK
#define AV_CHANNEL_LAYOUT_5POINT0
int av_channel_layout_compare(const AVChannelLayout *chl, const AVChannelLayout *chl1)
Check whether two channel layouts are semantically the same, i.e.
#define AV_CHANNEL_LAYOUT_2_2
#define AV_CHANNEL_LAYOUT_5POINT0_BACK
#define AV_CHANNEL_LAYOUT_5POINT1
#define AV_CHANNEL_LAYOUT_SURROUND
#define AV_CHANNEL_LAYOUT_QUAD
@ AV_CHANNEL_ORDER_UNSPEC
Only the channel count is specified, without any further information about the channel order.
const AVCRC * av_crc_get_table(AVCRCId crc_id)
Get an initialized standard CRC table.
uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t length)
Calculate the CRC of a block.
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
const char * av_default_item_name(void *ptr)
Return the context name.
void av_md5_init(AVMD5 *ctx)
Initialize MD5 hashing.
void av_md5_final(AVMD5 *ctx, uint8_t *dst)
Finish hashing and output digest value.
struct AVMD5 * av_md5_alloc(void)
Allocate an AVMD5 context.
void av_md5_update(AVMD5 *ctx, const uint8_t *src, size_t len)
Update hash value.
void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size)
Allocate a buffer, reusing the given one if large enough.
@ AV_SAMPLE_FMT_S32
signed 32 bits
@ AV_SAMPLE_FMT_S16
signed 16 bits
#define LIBAVUTIL_VERSION_INT
static void put_bits(Jpeg2000EncoderContext *s, int val, int n)
put n times val bit
static int shift(int a, int b)
av_cold void ff_bswapdsp_init(BswapDSPContext *c)
static void write_subframes(FlacEncodeContext *s)
#define MAX_PARTITION_ORDER
#define FLAC_SUBFRAME_CONSTANT
static void write_streaminfo(FlacEncodeContext *s, uint8_t *header)
Write streaminfo metadata block to byte array.
static void init_frame(FlacEncodeContext *s, int nb_samples)
static int encode_residual_ch(FlacEncodeContext *s, int ch)
static void write_frame_footer(FlacEncodeContext *s)
static av_cold int flac_encode_close(AVCodecContext *avctx)
#define FLAC_SUBFRAME_FIXED
static av_cold void dprint_compression_options(FlacEncodeContext *s)
static void copy_samples(FlacEncodeContext *s, const void *samples)
Copy channel-interleaved input samples into separate subframes.
#define MAX_LPC_PRECISION
static int lpc_encode_with_residual_limit(int32_t *res, const int32_t *smp, int len, int order, int32_t *coefs, int shift)
static uint64_t calc_optimal_rice_params(RiceContext *rc, int porder, uint64_t sums[32][MAX_PARTITIONS], int n, int pred_order, int max_param, int exact)
#define rice_encode_count(sum, n, k)
static void write_frame_header(FlacEncodeContext *s)
static uint64_t calc_rice_params(RiceContext *rc, uint32_t udata[FLAC_MAX_BLOCKSIZE], uint64_t sums[32][MAX_PARTITIONS], int pmin, int pmax, const int32_t *data, int n, int pred_order, int exact)
static const AVClass flac_encoder_class
static void encode_residual_fixed(int32_t *res, const int32_t *smp, int n, int order)
#define FLAC_SUBFRAME_VERBATIM
static int estimate_stereo_mode(const int32_t *left_ch, const int32_t *right_ch, int n, int max_rice_param, int bps)
static void calc_sum_top(int pmax, int kmax, const uint32_t *data, int n, int pred_order, uint64_t sums[32][MAX_PARTITIONS])
static void write_utf8(PutBitContext *pb, uint32_t val)
static int write_frame(FlacEncodeContext *s, AVPacket *avpkt)
static int find_optimal_param(uint64_t sum, int n, int max_param)
Solve for d/dk(rice_encode_count) = n-((sum-(n>>1))>>(k+1)) = 0.
static int get_max_p_order(int max_porder, int n, int order)
static void channel_decorrelation(FlacEncodeContext *s)
Perform stereo channel decorrelation.
static void set_sr_golomb_flac(PutBitContext *pb, int i, int k)
static av_cold int flac_encode_init(AVCodecContext *avctx)
static int encode_frame(FlacEncodeContext *s)
static uint64_t subframe_count_exact(FlacEncodeContext *s, FlacSubframe *sub, int pred_order)
static int select_blocksize(int samplerate, int block_time_ms)
Set blocksize based on samplerate.
static int encode_residual_fixed_with_residual_limit(int32_t *res, const int32_t *smp, int n, int order)
static int lpc_encode_choose_datapath(FlacEncodeContext *s, int32_t bps, int32_t *res, const int32_t *smp, const int64_t *smp_33bps, int len, int order, int32_t *coefs, int shift)
#define COPY_SAMPLES(bits, shift0)
static int encode_residual_fixed_with_residual_limit_33bps(int32_t *res, const int64_t *smp, int n, int order)
static int lpc_encode_with_residual_limit_33bps(int32_t *res, const int64_t *smp, int len, int order, int32_t *coefs, int shift)
#define ENCODE_RESIDUAL_FIXED_WITH_RESIDUAL_LIMIT()
static uint64_t rice_count_exact(const int32_t *res, int n, int k)
#define FLAC_SUBFRAME_LPC
#define LPC_ENCODE_WITH_RESIDUAL_LIMIT()
static int update_md5_sum(FlacEncodeContext *s, const void *samples)
static int find_optimal_param_exact(uint64_t sums[32][MAX_PARTITIONS], int i, int max_param)
static int count_frame_header(FlacEncodeContext *s)
static int flac_get_max_frame_size(int blocksize, int ch, int bps)
Calculate an estimate for the maximum frame size based on verbatim mode.
#define DEFAULT_TO_VERBATIM()
static void remove_wasted_bits(FlacEncodeContext *s)
static void calc_sum_next(int level, uint64_t sums[32][MAX_PARTITIONS], int kmax)
static int flac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
static uint64_t find_subframe_rice_params(FlacEncodeContext *s, FlacSubframe *sub, int pred_order)
av_cold void ff_lpc_end(LPCContext *s)
Uninitialize LPCContext.
int ff_lpc_calc_coefs(LPCContext *s, const int32_t *samples, int blocksize, int min_order, int max_order, int precision, int32_t coefs[][MAX_LPC_ORDER], int *shift, enum FFLPCType lpc_type, int lpc_passes, int omethod, int min_shift, int max_shift, int zero_shift)
Calculate LPC coefficients for multiple orders.
av_cold int ff_lpc_init(LPCContext *s, int blocksize, int max_order, enum FFLPCType lpc_type)
Initialize LPCContext.
#define ORDER_METHOD_4LEVEL
#define ORDER_METHOD_SEARCH
@ FF_LPC_TYPE_NONE
do not use LPC prediction or use all zero coefficients
@ FF_LPC_TYPE_CHOLESKY
Cholesky factorization.
@ FF_LPC_TYPE_FIXED
fixed LPC coefficients
@ FF_LPC_TYPE_LEVINSON
Levinson-Durbin recursion.
@ FF_LPC_TYPE_DEFAULT
use the codec default LPC type
@ FF_LPC_TYPE_NB
Not part of ABI.
#define ORDER_METHOD_8LEVEL
#define ORDER_METHOD_2LEVEL
static const uint16_t mask[17]
Public header for MD5 hash function implementation.
Memory handling functions.
static void put_sbits(PutBitContext *pb, int n, int32_t value)
static void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
Initialize the PutBitContext s.
static void put_sbits63(PutBitContext *pb, int n, int64_t value)
static void flush_put_bits(PutBitContext *s)
Pad the end of the output stream with zeros.
static int put_bytes_output(const PutBitContext *s)
static av_unused void put_bits32(PutBitContext *s, uint32_t value)
Write exactly 32 bits into a bitstream.
static const uint8_t header[24]
An AVChannelLayout holds information about the channel layout of audio data.
enum AVChannelOrder order
Channel order used in this layout.
int nb_channels
Number of channels in this layout.
Describe the class of an AVClass context structure.
main external API structure.
AVChannelLayout ch_layout
Audio channel layout.
enum AVSampleFormat sample_fmt
audio sample format
int strict_std_compliance
strictly follow the standard (MPEG-4, ...).
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
int sample_rate
samples per second
uint8_t * extradata
Out-of-band global headers that may be used by some codecs.
int frame_size
Number of samples per channel in an audio frame.
This structure describes decoded (raw) audio or video data.
This structure stores compressed data.
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
int prediction_order_method
int exact_rice_parameters
unsigned int md5_buffer_size
CompressionOptions options
FLACEncDSPContext flac_dsp
int max_encoded_framesize
int64_t samples_33bps[FLAC_MAX_BLOCKSIZE]
FlacSubframe subframes[FLAC_MAX_CHANNELS]
uint32_t rc_udata[FLAC_MAX_BLOCKSIZE]
int32_t coefs[MAX_LPC_ORDER]
int32_t samples[FLAC_MAX_BLOCKSIZE]
uint64_t rc_sums[32][MAX_PARTITIONS]
int32_t residual[FLAC_MAX_BLOCKSIZE+11]
int params[MAX_PARTITIONS]
enum CodingMode coding_mode
static int64_t frame_end(const SyncQueue *sq, SyncQueueFrame frame, int nb_samples)
Compute the end timestamp of a frame.
static av_always_inline int diff(const struct color_info *a, const struct color_info *b, const int trans_thresh)