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