Mercurial > libavcodec.hg
annotate flacenc.c @ 12301:a2dfd6f9a580 libavcodec
Add 2 failed memory allocation checks
| author | jbr |
|---|---|
| date | Fri, 30 Jul 2010 18:34:39 +0000 |
| parents | c13e3c23d093 |
| children | 2e28769c55a9 |
| rev | line source |
|---|---|
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1 /** |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
2 * FLAC audio encoder |
|
7594
cd6217c9ce92
update my email address to one which does not depend on my service provider
jbr
parents:
7592
diff
changeset
|
3 * Copyright (c) 2006 Justin Ruggles <justin.ruggles@gmail.com> |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
4 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3481
diff
changeset
|
5 * This file is part of FFmpeg. |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3481
diff
changeset
|
6 * |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3481
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
9 * License as published by the Free Software Foundation; either |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3481
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
11 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3481
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
15 * Lesser General Public License for more details. |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
16 * |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3481
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
20 */ |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
21 |
| 6763 | 22 #include "libavutil/crc.h" |
|
7861
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
23 #include "libavutil/md5.h" |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
24 #include "avcodec.h" |
| 9428 | 25 #include "get_bits.h" |
| 5737 | 26 #include "dsputil.h" |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
27 #include "golomb.h" |
|
7589
8b695a99e8df
flacenc, lpc: Move LPC code from flacenc.c to new lpc.[ch] files.
ramiro
parents:
7588
diff
changeset
|
28 #include "lpc.h" |
|
9188
f534d0cca450
share some constants between the FLAC encoder and FLAC decoder
jbr
parents:
8590
diff
changeset
|
29 #include "flac.h" |
|
9213
782d31263979
share sample rate and blocksize tables between the FLAC encoder and FLAC
jbr
parents:
9212
diff
changeset
|
30 #include "flacdata.h" |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
31 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
32 #define FLAC_SUBFRAME_CONSTANT 0 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
33 #define FLAC_SUBFRAME_VERBATIM 1 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
34 #define FLAC_SUBFRAME_FIXED 8 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
35 #define FLAC_SUBFRAME_LPC 32 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
36 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
37 #define MAX_FIXED_ORDER 4 |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
38 #define MAX_PARTITION_ORDER 8 |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
39 #define MAX_PARTITIONS (1 << MAX_PARTITION_ORDER) |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
40 #define MAX_LPC_PRECISION 15 |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
41 #define MAX_LPC_SHIFT 15 |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
42 #define MAX_RICE_PARAM 14 |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
43 |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
44 typedef struct CompressionOptions { |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
45 int compression_level; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
46 int block_time_ms; |
|
12139
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
47 enum AVLPCType lpc_type; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
48 int lpc_passes; |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
49 int lpc_coeff_precision; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
50 int min_prediction_order; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
51 int max_prediction_order; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
52 int prediction_order_method; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
53 int min_partition_order; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
54 int max_partition_order; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
55 } CompressionOptions; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
56 |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
57 typedef struct RiceContext { |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
58 int porder; |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
59 int params[MAX_PARTITIONS]; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
60 } RiceContext; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
61 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
62 typedef struct FlacSubframe { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
63 int type; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
64 int type_code; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
65 int obits; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
66 int order; |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
67 int32_t coefs[MAX_LPC_ORDER]; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
68 int shift; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
69 RiceContext rc; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
70 int32_t samples[FLAC_MAX_BLOCKSIZE]; |
| 5722 | 71 int32_t residual[FLAC_MAX_BLOCKSIZE+1]; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
72 } FlacSubframe; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
73 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
74 typedef struct FlacFrame { |
|
9188
f534d0cca450
share some constants between the FLAC encoder and FLAC decoder
jbr
parents:
8590
diff
changeset
|
75 FlacSubframe subframes[FLAC_MAX_CHANNELS]; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
76 int blocksize; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
77 int bs_code[2]; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
78 uint8_t crc8; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
79 int ch_mode; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
80 } FlacFrame; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
81 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
82 typedef struct FlacEncodeContext { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
83 PutBitContext pb; |
| 9214 | 84 int channels; |
| 85 int samplerate; | |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
86 int sr_code[2]; |
|
9448
f2835afa516a
flacenc: write initial blocksize to STREAMINFO header instead of current
jbr
parents:
9432
diff
changeset
|
87 int max_blocksize; |
|
7864
4820bd751284
write actual min and max frame size to FLAC header. update regression test checksum.
jbr
parents:
7861
diff
changeset
|
88 int min_framesize; |
| 9214 | 89 int max_framesize; |
|
7864
4820bd751284
write actual min and max frame size to FLAC header. update regression test checksum.
jbr
parents:
7861
diff
changeset
|
90 int max_encoded_framesize; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
91 uint32_t frame_count; |
| 7860 | 92 uint64_t sample_count; |
|
7861
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
93 uint8_t md5sum[16]; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
94 FlacFrame frame; |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
95 CompressionOptions options; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
96 AVCodecContext *avctx; |
| 5737 | 97 DSPContext dsp; |
|
7861
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
98 struct AVMD5 *md5ctx; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
99 } FlacEncodeContext; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
100 |
| 12300 | 101 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
102 /** |
| 12300 | 103 * Write streaminfo metadata block to byte array. |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
104 */ |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
105 static void write_streaminfo(FlacEncodeContext *s, uint8_t *header) |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
106 { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
107 PutBitContext pb; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
108 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
109 memset(header, 0, FLAC_STREAMINFO_SIZE); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
110 init_put_bits(&pb, header, FLAC_STREAMINFO_SIZE); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
111 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
112 /* streaminfo metadata block */ |
|
9448
f2835afa516a
flacenc: write initial blocksize to STREAMINFO header instead of current
jbr
parents:
9432
diff
changeset
|
113 put_bits(&pb, 16, s->max_blocksize); |
|
f2835afa516a
flacenc: write initial blocksize to STREAMINFO header instead of current
jbr
parents:
9432
diff
changeset
|
114 put_bits(&pb, 16, s->max_blocksize); |
|
7864
4820bd751284
write actual min and max frame size to FLAC header. update regression test checksum.
jbr
parents:
7861
diff
changeset
|
115 put_bits(&pb, 24, s->min_framesize); |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
116 put_bits(&pb, 24, s->max_framesize); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
117 put_bits(&pb, 20, s->samplerate); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
118 put_bits(&pb, 3, s->channels-1); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
119 put_bits(&pb, 5, 15); /* bits per sample - 1 */ |
| 7860 | 120 /* write 36-bit sample count in 2 put_bits() calls */ |
| 121 put_bits(&pb, 24, (s->sample_count & 0xFFFFFF000LL) >> 12); | |
| 122 put_bits(&pb, 12, s->sample_count & 0x000000FFFLL); | |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
123 flush_put_bits(&pb); |
|
7861
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
124 memcpy(&header[18], s->md5sum, 16); |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
125 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
126 |
| 12300 | 127 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
128 /** |
| 12300 | 129 * Set blocksize based on samplerate. |
| 130 * Choose the closest predefined blocksize >= BLOCK_TIME_MS milliseconds. | |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
131 */ |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
132 static int select_blocksize(int samplerate, int block_time_ms) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
133 { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
134 int i; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
135 int target; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
136 int blocksize; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
137 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
138 assert(samplerate > 0); |
|
9213
782d31263979
share sample rate and blocksize tables between the FLAC encoder and FLAC
jbr
parents:
9212
diff
changeset
|
139 blocksize = ff_flac_blocksize_table[1]; |
| 12300 | 140 target = (samplerate * block_time_ms) / 1000; |
| 141 for (i = 0; i < 16; i++) { | |
| 142 if (target >= ff_flac_blocksize_table[i] && | |
| 143 ff_flac_blocksize_table[i] > blocksize) { | |
|
9213
782d31263979
share sample rate and blocksize tables between the FLAC encoder and FLAC
jbr
parents:
9212
diff
changeset
|
144 blocksize = ff_flac_blocksize_table[i]; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
145 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
146 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
147 return blocksize; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
148 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
149 |
| 12300 | 150 |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6341
diff
changeset
|
151 static av_cold int flac_encode_init(AVCodecContext *avctx) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
152 { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
153 int freq = avctx->sample_rate; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
154 int channels = avctx->channels; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
155 FlacEncodeContext *s = avctx->priv_data; |
| 3386 | 156 int i, level; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
157 uint8_t *streaminfo; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
158 |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
159 s->avctx = avctx; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
160 |
| 5737 | 161 dsputil_init(&s->dsp, avctx); |
| 162 | |
| 12300 | 163 if (avctx->sample_fmt != SAMPLE_FMT_S16) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
164 return -1; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
165 |
| 12300 | 166 if (channels < 1 || channels > FLAC_MAX_CHANNELS) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
167 return -1; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
168 s->channels = channels; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
169 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
170 /* find samplerate in table */ |
| 12300 | 171 if (freq < 1) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
172 return -1; |
| 12300 | 173 for (i = 4; i < 12; i++) { |
| 174 if (freq == ff_flac_sample_rate_table[i]) { | |
|
9213
782d31263979
share sample rate and blocksize tables between the FLAC encoder and FLAC
jbr
parents:
9212
diff
changeset
|
175 s->samplerate = ff_flac_sample_rate_table[i]; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
176 s->sr_code[0] = i; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
177 s->sr_code[1] = 0; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
178 break; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
179 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
180 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
181 /* if not in table, samplerate is non-standard */ |
| 12300 | 182 if (i == 12) { |
| 183 if (freq % 1000 == 0 && freq < 255000) { | |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
184 s->sr_code[0] = 12; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
185 s->sr_code[1] = freq / 1000; |
| 12300 | 186 } else if (freq % 10 == 0 && freq < 655350) { |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
187 s->sr_code[0] = 14; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
188 s->sr_code[1] = freq / 10; |
| 12300 | 189 } else if (freq < 65535) { |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
190 s->sr_code[0] = 13; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
191 s->sr_code[1] = freq; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
192 } else { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
193 return -1; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
194 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
195 s->samplerate = freq; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
196 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
197 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
198 /* set compression option defaults based on avctx->compression_level */ |
| 12300 | 199 if (avctx->compression_level < 0) |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
200 s->options.compression_level = 5; |
| 12300 | 201 else |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
202 s->options.compression_level = avctx->compression_level; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
203 av_log(avctx, AV_LOG_DEBUG, " compression: %d\n", s->options.compression_level); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
204 |
| 12300 | 205 level = s->options.compression_level; |
| 206 if (level > 12) { | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
207 av_log(avctx, AV_LOG_ERROR, "invalid compression level: %d\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
208 s->options.compression_level); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
209 return -1; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
210 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
211 |
| 12300 | 212 s->options.block_time_ms = ((int[]){ 27, 27, 27,105,105,105,105,105,105,105,105,105,105})[level]; |
| 213 | |
| 214 s->options.lpc_type = ((int[]){ AV_LPC_TYPE_FIXED, AV_LPC_TYPE_FIXED, AV_LPC_TYPE_FIXED, | |
| 215 AV_LPC_TYPE_LEVINSON, AV_LPC_TYPE_LEVINSON, AV_LPC_TYPE_LEVINSON, | |
| 216 AV_LPC_TYPE_LEVINSON, AV_LPC_TYPE_LEVINSON, AV_LPC_TYPE_LEVINSON, | |
| 217 AV_LPC_TYPE_LEVINSON, AV_LPC_TYPE_LEVINSON, AV_LPC_TYPE_LEVINSON, | |
| 218 AV_LPC_TYPE_LEVINSON})[level]; | |
| 219 | |
| 220 s->options.min_prediction_order = ((int[]){ 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1})[level]; | |
| 221 s->options.max_prediction_order = ((int[]){ 3, 4, 4, 6, 8, 8, 8, 8, 12, 12, 12, 32, 32})[level]; | |
| 222 | |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
223 s->options.prediction_order_method = ((int[]){ ORDER_METHOD_EST, ORDER_METHOD_EST, ORDER_METHOD_EST, |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
224 ORDER_METHOD_EST, ORDER_METHOD_EST, ORDER_METHOD_EST, |
|
3480
9eb59c4a22d2
Modify preset compression levels to utilize log search.
jbr
parents:
3478
diff
changeset
|
225 ORDER_METHOD_4LEVEL, ORDER_METHOD_LOG, ORDER_METHOD_4LEVEL, |
|
9eb59c4a22d2
Modify preset compression levels to utilize log search.
jbr
parents:
3478
diff
changeset
|
226 ORDER_METHOD_LOG, ORDER_METHOD_SEARCH, ORDER_METHOD_LOG, |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
227 ORDER_METHOD_SEARCH})[level]; |
| 12300 | 228 |
| 3481 | 229 s->options.min_partition_order = ((int[]){ 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})[level]; |
| 230 s->options.max_partition_order = ((int[]){ 2, 2, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8})[level]; | |
| 3386 | 231 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
232 /* set compression option overrides from AVCodecContext */ |
|
12139
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
233 #if LIBAVCODEC_VERSION_MAJOR < 53 |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
234 /* for compatibility with deprecated AVCodecContext.use_lpc */ |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
235 if (avctx->use_lpc == 0) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
236 s->options.lpc_type = AV_LPC_TYPE_FIXED; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
237 } else if (avctx->use_lpc == 1) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
238 s->options.lpc_type = AV_LPC_TYPE_LEVINSON; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
239 } else if (avctx->use_lpc > 1) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
240 s->options.lpc_type = AV_LPC_TYPE_CHOLESKY; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
241 s->options.lpc_passes = avctx->use_lpc - 1; |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
242 } |
|
12139
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
243 #endif |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
244 if (avctx->lpc_type > AV_LPC_TYPE_DEFAULT) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
245 if (avctx->lpc_type > AV_LPC_TYPE_CHOLESKY) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
246 av_log(avctx, AV_LOG_ERROR, "unknown lpc type: %d\n", avctx->lpc_type); |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
247 return -1; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
248 } |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
249 s->options.lpc_type = avctx->lpc_type; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
250 if (s->options.lpc_type == AV_LPC_TYPE_CHOLESKY) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
251 if (avctx->lpc_passes < 0) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
252 // default number of passes for Cholesky |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
253 s->options.lpc_passes = 2; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
254 } else if (avctx->lpc_passes == 0) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
255 av_log(avctx, AV_LOG_ERROR, "invalid number of lpc passes: %d\n", |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
256 avctx->lpc_passes); |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
257 return -1; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
258 } else { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
259 s->options.lpc_passes = avctx->lpc_passes; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
260 } |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
261 } |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
262 } |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
263 switch (s->options.lpc_type) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
264 case AV_LPC_TYPE_NONE: |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
265 av_log(avctx, AV_LOG_DEBUG, " lpc type: None\n"); |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
266 break; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
267 case AV_LPC_TYPE_FIXED: |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
268 av_log(avctx, AV_LOG_DEBUG, " lpc type: Fixed pre-defined coefficients\n"); |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
269 break; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
270 case AV_LPC_TYPE_LEVINSON: |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
271 av_log(avctx, AV_LOG_DEBUG, " lpc type: Levinson-Durbin recursion with Welch window\n"); |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
272 break; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
273 case AV_LPC_TYPE_CHOLESKY: |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
274 av_log(avctx, AV_LOG_DEBUG, " lpc type: Cholesky factorization, %d pass%s\n", |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
275 s->options.lpc_passes, s->options.lpc_passes==1?"":"es"); |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
276 break; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
277 } |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
278 |
|
12139
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
279 if (s->options.lpc_type == AV_LPC_TYPE_NONE) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
280 s->options.min_prediction_order = 0; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
281 } else if (avctx->min_prediction_order >= 0) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
282 if (s->options.lpc_type == AV_LPC_TYPE_FIXED) { |
| 12300 | 283 if (avctx->min_prediction_order > MAX_FIXED_ORDER) { |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
284 av_log(avctx, AV_LOG_ERROR, "invalid min prediction order: %d\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
285 avctx->min_prediction_order); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
286 return -1; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
287 } |
| 12300 | 288 } else if (avctx->min_prediction_order < MIN_LPC_ORDER || |
| 289 avctx->min_prediction_order > MAX_LPC_ORDER) { | |
|
12139
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
290 av_log(avctx, AV_LOG_ERROR, "invalid min prediction order: %d\n", |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
291 avctx->min_prediction_order); |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
292 return -1; |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
293 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
294 s->options.min_prediction_order = avctx->min_prediction_order; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
295 } |
|
12139
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
296 if (s->options.lpc_type == AV_LPC_TYPE_NONE) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
297 s->options.max_prediction_order = 0; |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
298 } else if (avctx->max_prediction_order >= 0) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
299 if (s->options.lpc_type == AV_LPC_TYPE_FIXED) { |
| 12300 | 300 if (avctx->max_prediction_order > MAX_FIXED_ORDER) { |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
301 av_log(avctx, AV_LOG_ERROR, "invalid max prediction order: %d\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
302 avctx->max_prediction_order); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
303 return -1; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
304 } |
|
12139
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
305 } else if (avctx->max_prediction_order < MIN_LPC_ORDER || |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
306 avctx->max_prediction_order > MAX_LPC_ORDER) { |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
307 av_log(avctx, AV_LOG_ERROR, "invalid max prediction order: %d\n", |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
308 avctx->max_prediction_order); |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
309 return -1; |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
310 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
311 s->options.max_prediction_order = avctx->max_prediction_order; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
312 } |
| 12300 | 313 if (s->options.max_prediction_order < s->options.min_prediction_order) { |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
314 av_log(avctx, AV_LOG_ERROR, "invalid prediction orders: min=%d max=%d\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
315 s->options.min_prediction_order, s->options.max_prediction_order); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
316 return -1; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
317 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
318 av_log(avctx, AV_LOG_DEBUG, " prediction order: %d, %d\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
319 s->options.min_prediction_order, s->options.max_prediction_order); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
320 |
| 12300 | 321 if (avctx->prediction_order_method >= 0) { |
| 322 if (avctx->prediction_order_method > ORDER_METHOD_LOG) { | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
323 av_log(avctx, AV_LOG_ERROR, "invalid prediction order method: %d\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
324 avctx->prediction_order_method); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
325 return -1; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
326 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
327 s->options.prediction_order_method = avctx->prediction_order_method; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
328 } |
| 12300 | 329 switch (s->options.prediction_order_method) { |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
330 case ORDER_METHOD_EST: av_log(avctx, AV_LOG_DEBUG, " order method: %s\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
331 "estimate"); break; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
332 case ORDER_METHOD_2LEVEL: av_log(avctx, AV_LOG_DEBUG, " order method: %s\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
333 "2-level"); break; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
334 case ORDER_METHOD_4LEVEL: av_log(avctx, AV_LOG_DEBUG, " order method: %s\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
335 "4-level"); break; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
336 case ORDER_METHOD_8LEVEL: av_log(avctx, AV_LOG_DEBUG, " order method: %s\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
337 "8-level"); break; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
338 case ORDER_METHOD_SEARCH: av_log(avctx, AV_LOG_DEBUG, " order method: %s\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
339 "full search"); break; |
| 3478 | 340 case ORDER_METHOD_LOG: av_log(avctx, AV_LOG_DEBUG, " order method: %s\n", |
| 341 "log search"); break; | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
342 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
343 |
| 12300 | 344 if (avctx->min_partition_order >= 0) { |
| 345 if (avctx->min_partition_order > MAX_PARTITION_ORDER) { | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
346 av_log(avctx, AV_LOG_ERROR, "invalid min partition order: %d\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
347 avctx->min_partition_order); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
348 return -1; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
349 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
350 s->options.min_partition_order = avctx->min_partition_order; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
351 } |
| 12300 | 352 if (avctx->max_partition_order >= 0) { |
| 353 if (avctx->max_partition_order > MAX_PARTITION_ORDER) { | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
354 av_log(avctx, AV_LOG_ERROR, "invalid max partition order: %d\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
355 avctx->max_partition_order); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
356 return -1; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
357 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
358 s->options.max_partition_order = avctx->max_partition_order; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
359 } |
| 12300 | 360 if (s->options.max_partition_order < s->options.min_partition_order) { |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
361 av_log(avctx, AV_LOG_ERROR, "invalid partition orders: min=%d max=%d\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
362 s->options.min_partition_order, s->options.max_partition_order); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
363 return -1; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
364 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
365 av_log(avctx, AV_LOG_DEBUG, " partition order: %d, %d\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
366 s->options.min_partition_order, s->options.max_partition_order); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
367 |
| 12300 | 368 if (avctx->frame_size > 0) { |
| 369 if (avctx->frame_size < FLAC_MIN_BLOCKSIZE || | |
|
3442
5d133e59ecf2
allows user-settable block size and fixes related typo
jbr
parents:
3397
diff
changeset
|
370 avctx->frame_size > FLAC_MAX_BLOCKSIZE) { |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
371 av_log(avctx, AV_LOG_ERROR, "invalid block size: %d\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
372 avctx->frame_size); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
373 return -1; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
374 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
375 } else { |
| 6548 | 376 s->avctx->frame_size = select_blocksize(s->samplerate, s->options.block_time_ms); |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
377 } |
|
9448
f2835afa516a
flacenc: write initial blocksize to STREAMINFO header instead of current
jbr
parents:
9432
diff
changeset
|
378 s->max_blocksize = s->avctx->frame_size; |
| 6548 | 379 av_log(avctx, AV_LOG_DEBUG, " block size: %d\n", s->avctx->frame_size); |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
380 |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
381 /* set LPC precision */ |
| 12300 | 382 if (avctx->lpc_coeff_precision > 0) { |
| 383 if (avctx->lpc_coeff_precision > MAX_LPC_PRECISION) { | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
384 av_log(avctx, AV_LOG_ERROR, "invalid lpc coeff precision: %d\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
385 avctx->lpc_coeff_precision); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
386 return -1; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
387 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
388 s->options.lpc_coeff_precision = avctx->lpc_coeff_precision; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
389 } else { |
|
6545
85acd5166cf8
Use 15-bit LPC precision by default. This generally gives better compression
jbr
parents:
6517
diff
changeset
|
390 /* default LPC precision */ |
|
85acd5166cf8
Use 15-bit LPC precision by default. This generally gives better compression
jbr
parents:
6517
diff
changeset
|
391 s->options.lpc_coeff_precision = 15; |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
392 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
393 av_log(avctx, AV_LOG_DEBUG, " lpc precision: %d\n", |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
394 s->options.lpc_coeff_precision); |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
395 |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
396 /* set maximum encoded frame size in verbatim mode */ |
|
9216
64246d9e583a
add a function to calculate a more accurate estimate for maximum FLAC
jbr
parents:
9214
diff
changeset
|
397 s->max_framesize = ff_flac_get_max_frame_size(s->avctx->frame_size, |
|
64246d9e583a
add a function to calculate a more accurate estimate for maximum FLAC
jbr
parents:
9214
diff
changeset
|
398 s->channels, 16); |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
399 |
|
7861
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
400 /* initialize MD5 context */ |
|
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
401 s->md5ctx = av_malloc(av_md5_size); |
| 12300 | 402 if (!s->md5ctx) |
|
11581
998691d7f8f5
Replace all remaining occurrences of AVERROR_NOMEM with
stefano
parents:
11560
diff
changeset
|
403 return AVERROR(ENOMEM); |
|
7861
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
404 av_md5_init(s->md5ctx); |
|
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
405 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
406 streaminfo = av_malloc(FLAC_STREAMINFO_SIZE); |
| 12301 | 407 if (!streaminfo) |
| 408 return AVERROR(ENOMEM); | |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
409 write_streaminfo(s, streaminfo); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
410 avctx->extradata = streaminfo; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
411 avctx->extradata_size = FLAC_STREAMINFO_SIZE; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
412 |
| 12300 | 413 s->frame_count = 0; |
|
9212
c7a8e302b98a
flacenc: remove unneeded variable, 'min_encoded_framesize' and use
jbr
parents:
9209
diff
changeset
|
414 s->min_framesize = s->max_framesize; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
415 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
416 avctx->coded_frame = avcodec_alloc_frame(); |
| 12301 | 417 if (!avctx->coded_frame) |
| 418 return AVERROR(ENOMEM); | |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
419 avctx->coded_frame->key_frame = 1; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
420 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
421 return 0; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
422 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
423 |
| 12300 | 424 |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
425 static void init_frame(FlacEncodeContext *s) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
426 { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
427 int i, ch; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
428 FlacFrame *frame; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
429 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
430 frame = &s->frame; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
431 |
| 12300 | 432 for (i = 0; i < 16; i++) { |
| 433 if (s->avctx->frame_size == ff_flac_blocksize_table[i]) { | |
| 434 frame->blocksize = ff_flac_blocksize_table[i]; | |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
435 frame->bs_code[0] = i; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
436 frame->bs_code[1] = 0; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
437 break; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
438 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
439 } |
| 12300 | 440 if (i == 16) { |
| 6548 | 441 frame->blocksize = s->avctx->frame_size; |
| 12300 | 442 if (frame->blocksize <= 256) { |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
443 frame->bs_code[0] = 6; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
444 frame->bs_code[1] = frame->blocksize-1; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
445 } else { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
446 frame->bs_code[0] = 7; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
447 frame->bs_code[1] = frame->blocksize-1; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
448 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
449 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
450 |
| 12300 | 451 for (ch = 0; ch < s->channels; ch++) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
452 frame->subframes[ch].obits = 16; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
453 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
454 |
| 12300 | 455 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
456 /** |
| 12300 | 457 * Copy channel-interleaved input samples into separate subframes. |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
458 */ |
|
12262
dde20597f15e
Use "const" qualifier for pointers that point to input data of
reimar
parents:
12139
diff
changeset
|
459 static void copy_samples(FlacEncodeContext *s, const int16_t *samples) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
460 { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
461 int i, j, ch; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
462 FlacFrame *frame; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
463 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
464 frame = &s->frame; |
| 12300 | 465 for (i = 0, j = 0; i < frame->blocksize; i++) |
| 466 for (ch = 0; ch < s->channels; ch++, j++) | |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
467 frame->subframes[ch].samples[i] = samples[j]; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
468 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
469 |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
470 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
471 #define rice_encode_count(sum, n, k) (((n)*((k)+1))+((sum-(n>>1))>>(k))) |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
472 |
|
5732
d6fc148d1a48
replace brute force find_optimal_param() with a closed-form solution.
lorenm
parents:
5731
diff
changeset
|
473 /** |
| 12300 | 474 * Solve for d/dk(rice_encode_count) = n-((sum-(n>>1))>>(k+1)) = 0. |
|
5732
d6fc148d1a48
replace brute force find_optimal_param() with a closed-form solution.
lorenm
parents:
5731
diff
changeset
|
475 */ |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
476 static int find_optimal_param(uint32_t sum, int n) |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
477 { |
|
5732
d6fc148d1a48
replace brute force find_optimal_param() with a closed-form solution.
lorenm
parents:
5731
diff
changeset
|
478 int k; |
|
d6fc148d1a48
replace brute force find_optimal_param() with a closed-form solution.
lorenm
parents:
5731
diff
changeset
|
479 uint32_t sum2; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
480 |
| 12300 | 481 if (sum <= n >> 1) |
|
5732
d6fc148d1a48
replace brute force find_optimal_param() with a closed-form solution.
lorenm
parents:
5731
diff
changeset
|
482 return 0; |
| 12300 | 483 sum2 = sum - (n >> 1); |
| 484 k = av_log2(n < 256 ? FASTDIV(sum2, n) : sum2 / n); | |
|
5732
d6fc148d1a48
replace brute force find_optimal_param() with a closed-form solution.
lorenm
parents:
5731
diff
changeset
|
485 return FFMIN(k, MAX_RICE_PARAM); |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
486 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
487 |
| 12300 | 488 |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
489 static uint32_t calc_optimal_rice_params(RiceContext *rc, int porder, |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
490 uint32_t *sums, int n, int pred_order) |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
491 { |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
492 int i; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
493 int k, cnt, part; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
494 uint32_t all_bits; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
495 |
| 12300 | 496 part = (1 << porder); |
| 5852 | 497 all_bits = 4 * part; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
498 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
499 cnt = (n >> porder) - pred_order; |
| 12300 | 500 for (i = 0; i < part; i++) { |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
501 k = find_optimal_param(sums[i], cnt); |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
502 rc->params[i] = k; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
503 all_bits += rice_encode_count(sums[i], cnt, k); |
| 5852 | 504 cnt = n >> porder; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
505 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
506 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
507 rc->porder = porder; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
508 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
509 return all_bits; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
510 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
511 |
| 12300 | 512 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
513 static void calc_sums(int pmin, int pmax, uint32_t *data, int n, int pred_order, |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
514 uint32_t sums[][MAX_PARTITIONS]) |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
515 { |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
516 int i, j; |
| 3384 | 517 int parts; |
| 518 uint32_t *res, *res_end; | |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
519 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
520 /* sums for highest level */ |
| 12300 | 521 parts = (1 << pmax); |
| 522 res = &data[pred_order]; | |
| 3384 | 523 res_end = &data[n >> pmax]; |
| 12300 | 524 for (i = 0; i < parts; i++) { |
|
5731
976b4c5e68bb
gcc isn't smart enough to factor out duplicate stores
lorenm
parents:
5729
diff
changeset
|
525 uint32_t sum = 0; |
| 12300 | 526 while (res < res_end) |
|
5731
976b4c5e68bb
gcc isn't smart enough to factor out duplicate stores
lorenm
parents:
5729
diff
changeset
|
527 sum += *(res++); |
|
976b4c5e68bb
gcc isn't smart enough to factor out duplicate stores
lorenm
parents:
5729
diff
changeset
|
528 sums[pmax][i] = sum; |
| 12300 | 529 res_end += n >> pmax; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
530 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
531 /* sums for lower levels */ |
| 12300 | 532 for (i = pmax - 1; i >= pmin; i--) { |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
533 parts = (1 << i); |
| 12300 | 534 for (j = 0; j < parts; j++) |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
535 sums[i][j] = sums[i+1][2*j] + sums[i+1][2*j+1]; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
536 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
537 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
538 |
| 12300 | 539 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
540 static uint32_t calc_rice_params(RiceContext *rc, int pmin, int pmax, |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
541 int32_t *data, int n, int pred_order) |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
542 { |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
543 int i; |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
544 uint32_t bits[MAX_PARTITION_ORDER+1]; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
545 int opt_porder; |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
546 RiceContext tmp_rc; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
547 uint32_t *udata; |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
548 uint32_t sums[MAX_PARTITION_ORDER+1][MAX_PARTITIONS]; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
549 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
550 assert(pmin >= 0 && pmin <= MAX_PARTITION_ORDER); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
551 assert(pmax >= 0 && pmax <= MAX_PARTITION_ORDER); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
552 assert(pmin <= pmax); |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
553 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
554 udata = av_malloc(n * sizeof(uint32_t)); |
| 12300 | 555 for (i = 0; i < n; i++) |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
556 udata[i] = (2*data[i]) ^ (data[i]>>31); |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
557 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
558 calc_sums(pmin, pmax, udata, n, pred_order, sums); |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
559 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
560 opt_porder = pmin; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
561 bits[pmin] = UINT32_MAX; |
| 12300 | 562 for (i = pmin; i <= pmax; i++) { |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
563 bits[i] = calc_optimal_rice_params(&tmp_rc, i, sums[i], n, pred_order); |
| 12300 | 564 if (bits[i] <= bits[opt_porder]) { |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
565 opt_porder = i; |
| 12300 | 566 *rc = tmp_rc; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
567 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
568 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
569 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
570 av_freep(&udata); |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
571 return bits[opt_porder]; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
572 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
573 |
| 12300 | 574 |
|
3397
bdfc530c417c
porder patch by (Justin Ruggles jruggle a t earthlink d ot net)
michael
parents:
3390
diff
changeset
|
575 static int get_max_p_order(int max_porder, int n, int order) |
|
bdfc530c417c
porder patch by (Justin Ruggles jruggle a t earthlink d ot net)
michael
parents:
3390
diff
changeset
|
576 { |
|
bdfc530c417c
porder patch by (Justin Ruggles jruggle a t earthlink d ot net)
michael
parents:
3390
diff
changeset
|
577 int porder = FFMIN(max_porder, av_log2(n^(n-1))); |
| 12300 | 578 if (order > 0) |
|
3397
bdfc530c417c
porder patch by (Justin Ruggles jruggle a t earthlink d ot net)
michael
parents:
3390
diff
changeset
|
579 porder = FFMIN(porder, av_log2(n/order)); |
|
bdfc530c417c
porder patch by (Justin Ruggles jruggle a t earthlink d ot net)
michael
parents:
3390
diff
changeset
|
580 return porder; |
|
bdfc530c417c
porder patch by (Justin Ruggles jruggle a t earthlink d ot net)
michael
parents:
3390
diff
changeset
|
581 } |
|
bdfc530c417c
porder patch by (Justin Ruggles jruggle a t earthlink d ot net)
michael
parents:
3390
diff
changeset
|
582 |
| 12300 | 583 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
584 static uint32_t calc_rice_params_fixed(RiceContext *rc, int pmin, int pmax, |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
585 int32_t *data, int n, int pred_order, |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
586 int bps) |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
587 { |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
588 uint32_t bits; |
| 12300 | 589 pmin = get_max_p_order(pmin, n, pred_order); |
| 590 pmax = get_max_p_order(pmax, n, pred_order); | |
| 591 bits = pred_order * bps + 6; | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
592 bits += calc_rice_params(rc, pmin, pmax, data, n, pred_order); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
593 return bits; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
594 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
595 |
| 12300 | 596 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
597 static uint32_t calc_rice_params_lpc(RiceContext *rc, int pmin, int pmax, |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
598 int32_t *data, int n, int pred_order, |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
599 int bps, int precision) |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
600 { |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
601 uint32_t bits; |
| 12300 | 602 pmin = get_max_p_order(pmin, n, pred_order); |
| 603 pmax = get_max_p_order(pmax, n, pred_order); | |
| 604 bits = pred_order*bps + 4 + 5 + pred_order*precision + 6; | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
605 bits += calc_rice_params(rc, pmin, pmax, data, n, pred_order); |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
606 return bits; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
607 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
608 |
| 12300 | 609 |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
610 static void encode_residual_verbatim(int32_t *res, int32_t *smp, int n) |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
611 { |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
612 assert(n > 0); |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
613 memcpy(res, smp, n * sizeof(int32_t)); |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
614 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
615 |
| 12300 | 616 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
617 static void encode_residual_fixed(int32_t *res, const int32_t *smp, int n, |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
618 int order) |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
619 { |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
620 int i; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
621 |
| 12300 | 622 for (i = 0; i < order; i++) |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
623 res[i] = smp[i]; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
624 |
| 12300 | 625 if (order == 0) { |
| 626 for (i = order; i < n; i++) | |
| 627 res[i] = smp[i]; | |
| 628 } else if (order == 1) { | |
| 629 for (i = order; i < n; i++) | |
| 630 res[i] = smp[i] - smp[i-1]; | |
| 631 } else if (order == 2) { | |
|
5738
c1a4aae5adb4
encode_residual_fixed(): replace FIR with finite differences.
lorenm
parents:
5737
diff
changeset
|
632 int a = smp[order-1] - smp[order-2]; |
| 12300 | 633 for (i = order; i < n; i += 2) { |
| 634 int b = smp[i ] - smp[i-1]; | |
| 635 res[i] = b - a; | |
| 636 a = smp[i+1] - smp[i ]; | |
| 637 res[i+1] = a - b; | |
|
5738
c1a4aae5adb4
encode_residual_fixed(): replace FIR with finite differences.
lorenm
parents:
5737
diff
changeset
|
638 } |
| 12300 | 639 } else if (order == 3) { |
| 640 int a = smp[order-1] - smp[order-2]; | |
|
5738
c1a4aae5adb4
encode_residual_fixed(): replace FIR with finite differences.
lorenm
parents:
5737
diff
changeset
|
641 int c = smp[order-1] - 2*smp[order-2] + smp[order-3]; |
| 12300 | 642 for (i = order; i < n; i += 2) { |
| 643 int b = smp[i ] - smp[i-1]; | |
| 644 int d = b - a; | |
| 645 res[i] = d - c; | |
| 646 a = smp[i+1] - smp[i ]; | |
| 647 c = a - b; | |
| 648 res[i+1] = c - d; | |
|
5738
c1a4aae5adb4
encode_residual_fixed(): replace FIR with finite differences.
lorenm
parents:
5737
diff
changeset
|
649 } |
| 12300 | 650 } else { |
| 651 int a = smp[order-1] - smp[order-2]; | |
| 652 int c = smp[order-1] - 2*smp[order-2] + smp[order-3]; | |
|
5738
c1a4aae5adb4
encode_residual_fixed(): replace FIR with finite differences.
lorenm
parents:
5737
diff
changeset
|
653 int e = smp[order-1] - 3*smp[order-2] + 3*smp[order-3] - smp[order-4]; |
| 12300 | 654 for (i = order; i < n; i += 2) { |
| 655 int b = smp[i ] - smp[i-1]; | |
| 656 int d = b - a; | |
| 657 int f = d - c; | |
| 658 res[i ] = f - e; | |
| 659 a = smp[i+1] - smp[i ]; | |
| 660 c = a - b; | |
| 661 e = c - d; | |
| 662 res[i+1] = e - f; | |
|
5738
c1a4aae5adb4
encode_residual_fixed(): replace FIR with finite differences.
lorenm
parents:
5737
diff
changeset
|
663 } |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
664 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
665 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
666 |
| 12300 | 667 |
|
5724
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
668 #define LPC1(x) {\ |
| 5742 | 669 int c = coefs[(x)-1];\ |
| 12300 | 670 p0 += c * s;\ |
| 671 s = smp[i-(x)+1];\ | |
| 672 p1 += c * s;\ | |
|
5724
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
673 } |
|
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
674 |
| 12300 | 675 static av_always_inline void encode_residual_lpc_unrolled(int32_t *res, |
| 676 const int32_t *smp, int n, int order, | |
| 677 const int32_t *coefs, int shift, int big) | |
|
5724
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
678 { |
|
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
679 int i; |
| 12300 | 680 for (i = order; i < n; i += 2) { |
| 681 int s = smp[i-order]; | |
| 5742 | 682 int p0 = 0, p1 = 0; |
| 12300 | 683 if (big) { |
| 684 switch (order) { | |
| 685 case 32: LPC1(32) | |
| 686 case 31: LPC1(31) | |
| 687 case 30: LPC1(30) | |
| 688 case 29: LPC1(29) | |
| 689 case 28: LPC1(28) | |
| 690 case 27: LPC1(27) | |
| 691 case 26: LPC1(26) | |
| 692 case 25: LPC1(25) | |
| 693 case 24: LPC1(24) | |
| 694 case 23: LPC1(23) | |
| 695 case 22: LPC1(22) | |
| 696 case 21: LPC1(21) | |
| 697 case 20: LPC1(20) | |
| 698 case 19: LPC1(19) | |
| 699 case 18: LPC1(18) | |
| 700 case 17: LPC1(17) | |
| 701 case 16: LPC1(16) | |
| 702 case 15: LPC1(15) | |
| 703 case 14: LPC1(14) | |
| 704 case 13: LPC1(13) | |
| 705 case 12: LPC1(12) | |
| 706 case 11: LPC1(11) | |
| 707 case 10: LPC1(10) | |
| 708 case 9: LPC1( 9) | |
| 709 LPC1( 8) | |
| 710 LPC1( 7) | |
| 711 LPC1( 6) | |
| 712 LPC1( 5) | |
| 713 LPC1( 4) | |
| 714 LPC1( 3) | |
| 715 LPC1( 2) | |
| 716 LPC1( 1) | |
|
5724
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
717 } |
|
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
718 } else { |
| 12300 | 719 switch (order) { |
| 720 case 8: LPC1( 8) | |
| 721 case 7: LPC1( 7) | |
| 722 case 6: LPC1( 6) | |
| 723 case 5: LPC1( 5) | |
| 724 case 4: LPC1( 4) | |
| 725 case 3: LPC1( 3) | |
| 726 case 2: LPC1( 2) | |
| 727 case 1: LPC1( 1) | |
|
5724
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
728 } |
|
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
729 } |
|
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
730 res[i ] = smp[i ] - (p0 >> shift); |
|
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
731 res[i+1] = smp[i+1] - (p1 >> shift); |
|
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
732 } |
|
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
733 } |
|
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
734 |
| 12300 | 735 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
736 static void encode_residual_lpc(int32_t *res, const int32_t *smp, int n, |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
737 int order, const int32_t *coefs, int shift) |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
738 { |
|
5724
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
739 int i; |
| 12300 | 740 for (i = 0; i < order; i++) |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
741 res[i] = smp[i]; |
| 8590 | 742 #if CONFIG_SMALL |
| 12300 | 743 for (i = order; i < n; i += 2) { |
|
5724
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
744 int j; |
| 12300 | 745 int s = smp[i]; |
| 5742 | 746 int p0 = 0, p1 = 0; |
| 12300 | 747 for (j = 0; j < order; j++) { |
| 5742 | 748 int c = coefs[j]; |
| 12300 | 749 p1 += c * s; |
| 750 s = smp[i-j-1]; | |
| 751 p0 += c * s; | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
752 } |
| 5742 | 753 res[i ] = smp[i ] - (p0 >> shift); |
| 5720 | 754 res[i+1] = smp[i+1] - (p1 >> shift); |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
755 } |
|
5724
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
756 #else |
| 12300 | 757 switch (order) { |
| 758 case 1: encode_residual_lpc_unrolled(res, smp, n, 1, coefs, shift, 0); break; | |
| 759 case 2: encode_residual_lpc_unrolled(res, smp, n, 2, coefs, shift, 0); break; | |
| 760 case 3: encode_residual_lpc_unrolled(res, smp, n, 3, coefs, shift, 0); break; | |
| 761 case 4: encode_residual_lpc_unrolled(res, smp, n, 4, coefs, shift, 0); break; | |
| 762 case 5: encode_residual_lpc_unrolled(res, smp, n, 5, coefs, shift, 0); break; | |
| 763 case 6: encode_residual_lpc_unrolled(res, smp, n, 6, coefs, shift, 0); break; | |
| 764 case 7: encode_residual_lpc_unrolled(res, smp, n, 7, coefs, shift, 0); break; | |
| 765 case 8: encode_residual_lpc_unrolled(res, smp, n, 8, coefs, shift, 0); break; | |
| 766 default: encode_residual_lpc_unrolled(res, smp, n, order, coefs, shift, 1); break; | |
|
5724
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
767 } |
|
96d1b6c30aad
unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending on lpc order.
lorenm
parents:
5722
diff
changeset
|
768 #endif |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
769 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
770 |
| 12300 | 771 |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
772 static int encode_residual(FlacEncodeContext *ctx, int ch) |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
773 { |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
774 int i, n; |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
775 int min_order, max_order, opt_order, precision, omethod; |
|
3397
bdfc530c417c
porder patch by (Justin Ruggles jruggle a t earthlink d ot net)
michael
parents:
3390
diff
changeset
|
776 int min_porder, max_porder; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
777 FlacFrame *frame; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
778 FlacSubframe *sub; |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
779 int32_t coefs[MAX_LPC_ORDER][MAX_LPC_ORDER]; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
780 int shift[MAX_LPC_ORDER]; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
781 int32_t *res, *smp; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
782 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
783 frame = &ctx->frame; |
| 12300 | 784 sub = &frame->subframes[ch]; |
| 785 res = sub->residual; | |
| 786 smp = sub->samples; | |
| 787 n = frame->blocksize; | |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
788 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
789 /* CONSTANT */ |
| 12300 | 790 for (i = 1; i < n; i++) |
| 791 if(smp[i] != smp[0]) | |
| 792 break; | |
| 793 if (i == n) { | |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
794 sub->type = sub->type_code = FLAC_SUBFRAME_CONSTANT; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
795 res[0] = smp[0]; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
796 return sub->obits; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
797 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
798 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
799 /* VERBATIM */ |
| 12300 | 800 if (n < 5) { |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
801 sub->type = sub->type_code = FLAC_SUBFRAME_VERBATIM; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
802 encode_residual_verbatim(res, smp, n); |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
803 return sub->obits * n; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
804 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
805 |
| 12300 | 806 min_order = ctx->options.min_prediction_order; |
| 807 max_order = ctx->options.max_prediction_order; | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
808 min_porder = ctx->options.min_partition_order; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
809 max_porder = ctx->options.max_partition_order; |
| 12300 | 810 precision = ctx->options.lpc_coeff_precision; |
| 811 omethod = ctx->options.prediction_order_method; | |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
812 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
813 /* FIXED */ |
|
12139
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
814 if (ctx->options.lpc_type == AV_LPC_TYPE_NONE || |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
815 ctx->options.lpc_type == AV_LPC_TYPE_FIXED || n <= max_order) { |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
816 uint32_t bits[MAX_FIXED_ORDER+1]; |
| 12300 | 817 if (max_order > MAX_FIXED_ORDER) |
| 818 max_order = MAX_FIXED_ORDER; | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
819 opt_order = 0; |
| 12300 | 820 bits[0] = UINT32_MAX; |
| 821 for (i = min_order; i <= max_order; i++) { | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
822 encode_residual_fixed(res, smp, n, i); |
|
3397
bdfc530c417c
porder patch by (Justin Ruggles jruggle a t earthlink d ot net)
michael
parents:
3390
diff
changeset
|
823 bits[i] = calc_rice_params_fixed(&sub->rc, min_porder, max_porder, res, |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
824 n, i, sub->obits); |
| 12300 | 825 if (bits[i] < bits[opt_order]) |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
826 opt_order = i; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
827 } |
| 12300 | 828 sub->order = opt_order; |
| 829 sub->type = FLAC_SUBFRAME_FIXED; | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
830 sub->type_code = sub->type | sub->order; |
| 12300 | 831 if (sub->order != max_order) { |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
832 encode_residual_fixed(res, smp, n, sub->order); |
|
3397
bdfc530c417c
porder patch by (Justin Ruggles jruggle a t earthlink d ot net)
michael
parents:
3390
diff
changeset
|
833 return calc_rice_params_fixed(&sub->rc, min_porder, max_porder, res, n, |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
834 sub->order, sub->obits); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
835 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
836 return bits[sub->order]; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
837 } |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
838 |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
839 /* LPC */ |
| 7592 | 840 opt_order = ff_lpc_calc_coefs(&ctx->dsp, smp, n, min_order, max_order, |
|
12139
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
841 precision, coefs, shift, ctx->options.lpc_type, |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
842 ctx->options.lpc_passes, omethod, |
|
e59926e2c50c
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents:
12129
diff
changeset
|
843 MAX_LPC_SHIFT, 0); |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
844 |
| 12300 | 845 if (omethod == ORDER_METHOD_2LEVEL || |
| 846 omethod == ORDER_METHOD_4LEVEL || | |
| 847 omethod == ORDER_METHOD_8LEVEL) { | |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
848 int levels = 1 << omethod; |
| 11936 | 849 uint32_t bits[1 << ORDER_METHOD_8LEVEL]; |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
850 int order; |
| 12300 | 851 int opt_index = levels-1; |
| 852 opt_order = max_order-1; | |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
853 bits[opt_index] = UINT32_MAX; |
| 12300 | 854 for (i = levels-1; i >= 0; i--) { |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
855 order = min_order + (((max_order-min_order+1) * (i+1)) / levels)-1; |
| 12300 | 856 if (order < 0) |
| 857 order = 0; | |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
858 encode_residual_lpc(res, smp, n, order+1, coefs[order], shift[order]); |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
859 bits[i] = calc_rice_params_lpc(&sub->rc, min_porder, max_porder, |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
860 res, n, order+1, sub->obits, precision); |
| 12300 | 861 if (bits[i] < bits[opt_index]) { |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
862 opt_index = i; |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
863 opt_order = order; |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
864 } |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
865 } |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
866 opt_order++; |
| 12300 | 867 } else if (omethod == ORDER_METHOD_SEARCH) { |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
868 // brute-force optimal order search |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
869 uint32_t bits[MAX_LPC_ORDER]; |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
870 opt_order = 0; |
| 12300 | 871 bits[0] = UINT32_MAX; |
| 872 for (i = min_order-1; i < max_order; i++) { | |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
873 encode_residual_lpc(res, smp, n, i+1, coefs[i], shift[i]); |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
874 bits[i] = calc_rice_params_lpc(&sub->rc, min_porder, max_porder, |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
875 res, n, i+1, sub->obits, precision); |
| 12300 | 876 if (bits[i] < bits[opt_order]) |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
877 opt_order = i; |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
878 } |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
879 opt_order++; |
| 12300 | 880 } else if (omethod == ORDER_METHOD_LOG) { |
| 3478 | 881 uint32_t bits[MAX_LPC_ORDER]; |
| 882 int step; | |
| 883 | |
| 12300 | 884 opt_order = min_order - 1 + (max_order-min_order)/3; |
| 3478 | 885 memset(bits, -1, sizeof(bits)); |
| 886 | |
| 12300 | 887 for (step = 16; step; step >>= 1) { |
| 888 int last = opt_order; | |
| 889 for (i = last-step; i <= last+step; i += step) { | |
| 890 if (i < min_order-1 || i >= max_order || bits[i] < UINT32_MAX) | |
| 3478 | 891 continue; |
| 892 encode_residual_lpc(res, smp, n, i+1, coefs[i], shift[i]); | |
| 893 bits[i] = calc_rice_params_lpc(&sub->rc, min_porder, max_porder, | |
| 12300 | 894 res, n, i+1, sub->obits, |
| 895 precision); | |
| 896 if (bits[i] < bits[opt_order]) | |
| 897 opt_order = i; | |
| 3478 | 898 } |
| 899 } | |
| 900 opt_order++; | |
|
3477
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
901 } |
|
30ac8a424448
Add lpc order search. This creates new compression levels 6 to 12.
jbr
parents:
3473
diff
changeset
|
902 |
| 12300 | 903 sub->order = opt_order; |
| 904 sub->type = FLAC_SUBFRAME_LPC; | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
905 sub->type_code = sub->type | (sub->order-1); |
| 12300 | 906 sub->shift = shift[sub->order-1]; |
| 907 for (i = 0; i < sub->order; i++) | |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
908 sub->coefs[i] = coefs[sub->order-1][i]; |
| 12300 | 909 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
910 encode_residual_lpc(res, smp, n, sub->order, sub->coefs, sub->shift); |
| 12300 | 911 |
| 912 return calc_rice_params_lpc(&sub->rc, min_porder, max_porder, res, n, | |
| 913 sub->order, sub->obits, precision); | |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
914 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
915 |
| 12300 | 916 |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
917 static int encode_residual_v(FlacEncodeContext *ctx, int ch) |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
918 { |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
919 int i, n; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
920 FlacFrame *frame; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
921 FlacSubframe *sub; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
922 int32_t *res, *smp; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
923 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
924 frame = &ctx->frame; |
| 12300 | 925 sub = &frame->subframes[ch]; |
| 926 res = sub->residual; | |
| 927 smp = sub->samples; | |
| 928 n = frame->blocksize; | |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
929 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
930 /* CONSTANT */ |
| 12300 | 931 for (i = 1; i < n; i++) |
| 932 if (smp[i] != smp[0]) | |
| 933 break; | |
| 934 if (i == n) { | |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
935 sub->type = sub->type_code = FLAC_SUBFRAME_CONSTANT; |
| 12300 | 936 res[0] = smp[0]; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
937 return sub->obits; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
938 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
939 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
940 /* VERBATIM */ |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
941 sub->type = sub->type_code = FLAC_SUBFRAME_VERBATIM; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
942 encode_residual_verbatim(res, smp, n); |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
943 return sub->obits * n; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
944 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
945 |
| 12300 | 946 |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
947 static int estimate_stereo_mode(int32_t *left_ch, int32_t *right_ch, int n) |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
948 { |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
949 int i, best; |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
950 int32_t lt, rt; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
951 uint64_t sum[4]; |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
952 uint64_t score[4]; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
953 int k; |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
954 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
955 /* calculate sum of 2nd order residual for each channel */ |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
956 sum[0] = sum[1] = sum[2] = sum[3] = 0; |
| 12300 | 957 for (i = 2; i < n; i++) { |
| 958 lt = left_ch[i] - 2*left_ch[i-1] + left_ch[i-2]; | |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
959 rt = right_ch[i] - 2*right_ch[i-1] + right_ch[i-2]; |
| 4001 | 960 sum[2] += FFABS((lt + rt) >> 1); |
| 961 sum[3] += FFABS(lt - rt); | |
| 962 sum[0] += FFABS(lt); | |
| 963 sum[1] += FFABS(rt); | |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
964 } |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
965 /* estimate bit counts */ |
| 12300 | 966 for (i = 0; i < 4; i++) { |
| 967 k = find_optimal_param(2 * sum[i], n); | |
| 968 sum[i] = rice_encode_count( 2 * sum[i], n, k); | |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
969 } |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
970 |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
971 /* calculate score for each mode */ |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
972 score[0] = sum[0] + sum[1]; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
973 score[1] = sum[0] + sum[3]; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
974 score[2] = sum[1] + sum[3]; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
975 score[3] = sum[2] + sum[3]; |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
976 |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
977 /* return mode with lowest score */ |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
978 best = 0; |
| 12300 | 979 for (i = 1; i < 4; i++) |
| 980 if (score[i] < score[best]) | |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
981 best = i; |
| 12300 | 982 if (best == 0) { |
|
9208
443f056ba7e7
share channel mode constants between the FLAC decoder and FLAC encoder
jbr
parents:
9188
diff
changeset
|
983 return FLAC_CHMODE_INDEPENDENT; |
| 12300 | 984 } else if (best == 1) { |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
985 return FLAC_CHMODE_LEFT_SIDE; |
| 12300 | 986 } else if (best == 2) { |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
987 return FLAC_CHMODE_RIGHT_SIDE; |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
988 } else { |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
989 return FLAC_CHMODE_MID_SIDE; |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
990 } |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
991 } |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
992 |
| 12300 | 993 |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
994 /** |
| 12300 | 995 * Perform stereo channel decorrelation. |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
996 */ |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
997 static void channel_decorrelation(FlacEncodeContext *ctx) |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
998 { |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
999 FlacFrame *frame; |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1000 int32_t *left, *right; |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1001 int i, n; |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1002 |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1003 frame = &ctx->frame; |
| 12300 | 1004 n = frame->blocksize; |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1005 left = frame->subframes[0].samples; |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1006 right = frame->subframes[1].samples; |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1007 |
| 12300 | 1008 if (ctx->channels != 2) { |
|
9208
443f056ba7e7
share channel mode constants between the FLAC decoder and FLAC encoder
jbr
parents:
9188
diff
changeset
|
1009 frame->ch_mode = FLAC_CHMODE_INDEPENDENT; |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1010 return; |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1011 } |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1012 |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1013 frame->ch_mode = estimate_stereo_mode(left, right, n); |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1014 |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1015 /* perform decorrelation and adjust bits-per-sample */ |
| 12300 | 1016 if (frame->ch_mode == FLAC_CHMODE_INDEPENDENT) |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1017 return; |
| 12300 | 1018 if (frame->ch_mode == FLAC_CHMODE_MID_SIDE) { |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1019 int32_t tmp; |
| 12300 | 1020 for (i = 0; i < n; i++) { |
| 1021 tmp = left[i]; | |
| 1022 left[i] = (tmp + right[i]) >> 1; | |
| 1023 right[i] = tmp - right[i]; | |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1024 } |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1025 frame->subframes[1].obits++; |
| 12300 | 1026 } else if (frame->ch_mode == FLAC_CHMODE_LEFT_SIDE) { |
| 1027 for (i = 0; i < n; i++) | |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1028 right[i] = left[i] - right[i]; |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1029 frame->subframes[1].obits++; |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1030 } else { |
| 12300 | 1031 for (i = 0; i < n; i++) |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1032 left[i] -= right[i]; |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1033 frame->subframes[0].obits++; |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1034 } |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1035 } |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1036 |
| 12300 | 1037 |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1038 static void write_utf8(PutBitContext *pb, uint32_t val) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1039 { |
|
4149
3118e8afb8a5
Fix ASF format parser's broken UTF-16 string handling
gpoirier
parents:
4001
diff
changeset
|
1040 uint8_t tmp; |
|
3118e8afb8a5
Fix ASF format parser's broken UTF-16 string handling
gpoirier
parents:
4001
diff
changeset
|
1041 PUT_UTF8(val, tmp, put_bits(pb, 8, tmp);) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1042 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1043 |
| 12300 | 1044 |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1045 static void output_frame_header(FlacEncodeContext *s) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1046 { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1047 FlacFrame *frame; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1048 int crc; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1049 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1050 frame = &s->frame; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1051 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1052 put_bits(&s->pb, 16, 0xFFF8); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1053 put_bits(&s->pb, 4, frame->bs_code[0]); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1054 put_bits(&s->pb, 4, s->sr_code[0]); |
| 12300 | 1055 |
| 1056 if (frame->ch_mode == FLAC_CHMODE_INDEPENDENT) | |
| 9209 | 1057 put_bits(&s->pb, 4, s->channels-1); |
| 12300 | 1058 else |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1059 put_bits(&s->pb, 4, frame->ch_mode); |
| 12300 | 1060 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1061 put_bits(&s->pb, 3, 4); /* bits-per-sample code */ |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1062 put_bits(&s->pb, 1, 0); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1063 write_utf8(&s->pb, s->frame_count); |
| 12300 | 1064 |
| 1065 if (frame->bs_code[0] == 6) | |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1066 put_bits(&s->pb, 8, frame->bs_code[1]); |
| 12300 | 1067 else if (frame->bs_code[0] == 7) |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1068 put_bits(&s->pb, 16, frame->bs_code[1]); |
| 12300 | 1069 |
| 1070 if (s->sr_code[0] == 12) | |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1071 put_bits(&s->pb, 8, s->sr_code[1]); |
| 12300 | 1072 else if (s->sr_code[0] > 12) |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1073 put_bits(&s->pb, 16, s->sr_code[1]); |
| 12300 | 1074 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1075 flush_put_bits(&s->pb); |
| 12300 | 1076 crc = av_crc(av_crc_get_table(AV_CRC_8_ATM), 0, s->pb.buf, |
| 1077 put_bits_count(&s->pb) >> 3); | |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1078 put_bits(&s->pb, 8, crc); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1079 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1080 |
| 12300 | 1081 |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1082 static void output_subframe_constant(FlacEncodeContext *s, int ch) |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1083 { |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1084 FlacSubframe *sub; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1085 int32_t res; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1086 |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1087 sub = &s->frame.subframes[ch]; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1088 res = sub->residual[0]; |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1089 put_sbits(&s->pb, sub->obits, res); |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1090 } |
|
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1091 |
| 12300 | 1092 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1093 static void output_subframe_verbatim(FlacEncodeContext *s, int ch) |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1094 { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1095 int i; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1096 FlacFrame *frame; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1097 FlacSubframe *sub; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1098 int32_t res; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1099 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1100 frame = &s->frame; |
| 12300 | 1101 sub = &frame->subframes[ch]; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1102 |
| 12300 | 1103 for (i = 0; i < frame->blocksize; i++) { |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1104 res = sub->residual[i]; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1105 put_sbits(&s->pb, sub->obits, res); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1106 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1107 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1108 |
| 12300 | 1109 |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1110 static void output_residual(FlacEncodeContext *ctx, int ch) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1111 { |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1112 int i, j, p, n, parts; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1113 int k, porder, psize, res_cnt; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1114 FlacFrame *frame; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1115 FlacSubframe *sub; |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1116 int32_t *res; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1117 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1118 frame = &ctx->frame; |
| 12300 | 1119 sub = &frame->subframes[ch]; |
| 1120 res = sub->residual; | |
| 1121 n = frame->blocksize; | |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1122 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1123 /* rice-encoded block */ |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1124 put_bits(&ctx->pb, 2, 0); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1125 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1126 /* partition order */ |
| 12300 | 1127 porder = sub->rc.porder; |
| 1128 psize = n >> porder; | |
| 1129 parts = (1 << porder); | |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1130 put_bits(&ctx->pb, 4, porder); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1131 res_cnt = psize - sub->order; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1132 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1133 /* residual */ |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1134 j = sub->order; |
| 12300 | 1135 for (p = 0; p < parts; p++) { |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1136 k = sub->rc.params[p]; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1137 put_bits(&ctx->pb, 4, k); |
| 12300 | 1138 if (p == 1) |
| 1139 res_cnt = psize; | |
| 1140 for (i = 0; i < res_cnt && j < n; i++, j++) | |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1141 set_sr_golomb_flac(&ctx->pb, res[j], k, INT32_MAX, 0); |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1142 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1143 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1144 |
| 12300 | 1145 |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1146 static void output_subframe_fixed(FlacEncodeContext *ctx, int ch) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1147 { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1148 int i; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1149 FlacFrame *frame; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1150 FlacSubframe *sub; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1151 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1152 frame = &ctx->frame; |
| 12300 | 1153 sub = &frame->subframes[ch]; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1154 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1155 /* warm-up samples */ |
| 12300 | 1156 for (i = 0; i < sub->order; i++) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1157 put_sbits(&ctx->pb, sub->obits, sub->residual[i]); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1158 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1159 /* residual */ |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1160 output_residual(ctx, ch); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1161 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1162 |
| 12300 | 1163 |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1164 static void output_subframe_lpc(FlacEncodeContext *ctx, int ch) |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1165 { |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1166 int i, cbits; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1167 FlacFrame *frame; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1168 FlacSubframe *sub; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1169 |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1170 frame = &ctx->frame; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1171 sub = &frame->subframes[ch]; |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1172 |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1173 /* warm-up samples */ |
| 12300 | 1174 for (i = 0; i < sub->order; i++) |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1175 put_sbits(&ctx->pb, sub->obits, sub->residual[i]); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1176 |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1177 /* LPC coefficients */ |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1178 cbits = ctx->options.lpc_coeff_precision; |
| 12300 | 1179 put_bits( &ctx->pb, 4, cbits-1); |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1180 put_sbits(&ctx->pb, 5, sub->shift); |
| 12300 | 1181 for (i = 0; i < sub->order; i++) |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1182 put_sbits(&ctx->pb, cbits, sub->coefs[i]); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1183 |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1184 /* residual */ |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1185 output_residual(ctx, ch); |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1186 } |
|
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1187 |
| 12300 | 1188 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1189 static void output_subframes(FlacEncodeContext *s) |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1190 { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1191 FlacFrame *frame; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1192 FlacSubframe *sub; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1193 int ch; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1194 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1195 frame = &s->frame; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1196 |
| 12300 | 1197 for (ch = 0; ch < s->channels; ch++) { |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1198 sub = &frame->subframes[ch]; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1199 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1200 /* subframe header */ |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1201 put_bits(&s->pb, 1, 0); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1202 put_bits(&s->pb, 6, sub->type_code); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1203 put_bits(&s->pb, 1, 0); /* no wasted bits */ |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1204 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1205 /* subframe */ |
| 12300 | 1206 if(sub->type == FLAC_SUBFRAME_CONSTANT) |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1207 output_subframe_constant(s, ch); |
| 12300 | 1208 else if(sub->type == FLAC_SUBFRAME_VERBATIM) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1209 output_subframe_verbatim(s, ch); |
| 12300 | 1210 else if(sub->type == FLAC_SUBFRAME_FIXED) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1211 output_subframe_fixed(s, ch); |
| 12300 | 1212 else if(sub->type == FLAC_SUBFRAME_LPC) |
|
3385
340e5d35b326
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
michael
parents:
3384
diff
changeset
|
1213 output_subframe_lpc(s, ch); |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1214 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1215 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1216 |
| 12300 | 1217 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1218 static void output_frame_footer(FlacEncodeContext *s) |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1219 { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1220 int crc; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1221 flush_put_bits(&s->pb); |
| 12300 | 1222 crc = av_bswap16(av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, s->pb.buf, |
| 1223 put_bits_count(&s->pb)>>3)); | |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1224 put_bits(&s->pb, 16, crc); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1225 flush_put_bits(&s->pb); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1226 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1227 |
| 12300 | 1228 |
|
12262
dde20597f15e
Use "const" qualifier for pointers that point to input data of
reimar
parents:
12139
diff
changeset
|
1229 static void update_md5_sum(FlacEncodeContext *s, const int16_t *samples) |
|
7861
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1230 { |
| 9985 | 1231 #if HAVE_BIGENDIAN |
|
7861
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1232 int i; |
| 12300 | 1233 for (i = 0; i < s->frame.blocksize * s->channels; i++) { |
| 12129 | 1234 int16_t smp = av_le2ne16(samples[i]); |
|
7861
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1235 av_md5_update(s->md5ctx, (uint8_t *)&smp, 2); |
|
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1236 } |
|
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1237 #else |
|
12262
dde20597f15e
Use "const" qualifier for pointers that point to input data of
reimar
parents:
12139
diff
changeset
|
1238 av_md5_update(s->md5ctx, (const uint8_t *)samples, s->frame.blocksize*s->channels*2); |
|
7861
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1239 #endif |
|
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1240 } |
|
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1241 |
| 12300 | 1242 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1243 static int flac_encode_frame(AVCodecContext *avctx, uint8_t *frame, |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1244 int buf_size, void *data) |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1245 { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1246 int ch; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1247 FlacEncodeContext *s; |
|
12262
dde20597f15e
Use "const" qualifier for pointers that point to input data of
reimar
parents:
12139
diff
changeset
|
1248 const int16_t *samples = data; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1249 int out_bytes; |
|
7599
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1250 int reencoded=0; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1251 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1252 s = avctx->priv_data; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1253 |
| 12300 | 1254 if (buf_size < s->max_framesize * 2) { |
|
7599
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1255 av_log(avctx, AV_LOG_ERROR, "output buffer too small\n"); |
|
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1256 return 0; |
|
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1257 } |
|
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1258 |
| 7860 | 1259 /* when the last block is reached, update the header in extradata */ |
| 1260 if (!data) { | |
|
7864
4820bd751284
write actual min and max frame size to FLAC header. update regression test checksum.
jbr
parents:
7861
diff
changeset
|
1261 s->max_framesize = s->max_encoded_framesize; |
|
7861
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1262 av_md5_final(s->md5ctx, s->md5sum); |
| 7860 | 1263 write_streaminfo(s, avctx->extradata); |
| 1264 return 0; | |
| 1265 } | |
| 1266 | |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1267 init_frame(s); |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1268 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1269 copy_samples(s, samples); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1270 |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1271 channel_decorrelation(s); |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1272 |
| 12300 | 1273 for (ch = 0; ch < s->channels; ch++) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1274 encode_residual(s, ch); |
|
7599
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1275 |
|
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1276 write_frame: |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1277 init_put_bits(&s->pb, frame, buf_size); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1278 output_frame_header(s); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1279 output_subframes(s); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1280 output_frame_footer(s); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1281 out_bytes = put_bits_count(&s->pb) >> 3; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1282 |
| 12300 | 1283 if (out_bytes > s->max_framesize) { |
| 1284 if (reencoded) { | |
|
7599
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1285 /* still too large. must be an error. */ |
|
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1286 av_log(avctx, AV_LOG_ERROR, "error encoding frame\n"); |
|
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1287 return -1; |
|
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1288 } |
|
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1289 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1290 /* frame too large. use verbatim mode */ |
| 12300 | 1291 for (ch = 0; ch < s->channels; ch++) |
|
3365
84f29207af3a
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
michael
parents:
3358
diff
changeset
|
1292 encode_residual_v(s, ch); |
|
7599
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1293 reencoded = 1; |
|
3c07ce8ac9f7
fix and simplify frame size check and reencoding in verbatim mode
jbr
parents:
7594
diff
changeset
|
1294 goto write_frame; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1295 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1296 |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1297 s->frame_count++; |
| 7860 | 1298 s->sample_count += avctx->frame_size; |
|
7861
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1299 update_md5_sum(s, samples); |
|
7864
4820bd751284
write actual min and max frame size to FLAC header. update regression test checksum.
jbr
parents:
7861
diff
changeset
|
1300 if (out_bytes > s->max_encoded_framesize) |
|
4820bd751284
write actual min and max frame size to FLAC header. update regression test checksum.
jbr
parents:
7861
diff
changeset
|
1301 s->max_encoded_framesize = out_bytes; |
|
9212
c7a8e302b98a
flacenc: remove unneeded variable, 'min_encoded_framesize' and use
jbr
parents:
9209
diff
changeset
|
1302 if (out_bytes < s->min_framesize) |
|
c7a8e302b98a
flacenc: remove unneeded variable, 'min_encoded_framesize' and use
jbr
parents:
9209
diff
changeset
|
1303 s->min_framesize = out_bytes; |
| 7860 | 1304 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1305 return out_bytes; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1306 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1307 |
| 12300 | 1308 |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6341
diff
changeset
|
1309 static av_cold int flac_encode_close(AVCodecContext *avctx) |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1310 { |
|
7861
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1311 if (avctx->priv_data) { |
|
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1312 FlacEncodeContext *s = avctx->priv_data; |
|
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1313 av_freep(&s->md5ctx); |
|
f092dd630095
write MD5 checksum to FLAC header. update regression tests.
jbr
parents:
7860
diff
changeset
|
1314 } |
|
3358
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1315 av_freep(&avctx->extradata); |
|
4ae69b5b596b
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
michael
parents:
3357
diff
changeset
|
1316 avctx->extradata_size = 0; |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1317 av_freep(&avctx->coded_frame); |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1318 return 0; |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1319 } |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1320 |
| 12300 | 1321 |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1322 AVCodec flac_encoder = { |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1323 "flac", |
|
11560
8a4984c5cacc
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
10424
diff
changeset
|
1324 AVMEDIA_TYPE_AUDIO, |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1325 CODEC_ID_FLAC, |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1326 sizeof(FlacEncodeContext), |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1327 flac_encode_init, |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1328 flac_encode_frame, |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1329 flac_encode_close, |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1330 NULL, |
| 7860 | 1331 .capabilities = CODEC_CAP_SMALL_LAST_FRAME | CODEC_CAP_DELAY, |
|
10145
7955db355703
Make sample_fmts and channel_layouts compound literals const to reduce size of
reimar
parents:
9985
diff
changeset
|
1332 .sample_fmts = (const enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE}, |
|
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6763
diff
changeset
|
1333 .long_name = NULL_IF_CONFIG_SMALL("FLAC (Free Lossless Audio Codec)"), |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
diff
changeset
|
1334 }; |
