annotate alacenc.c @ 12530:63edd10ad4bc libavcodec tip

Try to fix crashes introduced by r25218 r25218 made assumptions about the existence of past reference frames that weren't necessarily true.
author darkshikari
date Tue, 28 Sep 2010 09:06:22 +0000
parents dde20597f15e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
1 /**
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
2 * ALAC audio encoder
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
3 * Copyright (c) 2008 Jaikrishnan Menon <realityman@gmx.net>
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
4 *
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
5 * This file is part of FFmpeg.
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
6 *
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
11 *
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
15 * Lesser General Public License for more details.
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
16 *
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
20 */
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
21
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
22 #include "avcodec.h"
9411
4cb7c65fc775 Split bitstream.h, put the bitstream writer stuff in the new file
stefano
parents: 9110
diff changeset
23 #include "put_bits.h"
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
24 #include "dsputil.h"
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
25 #include "lpc.h"
9110
ac31a0265eb9 Use sign_extend().
benoit
parents: 8261
diff changeset
26 #include "mathops.h"
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
27
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
28 #define DEFAULT_FRAME_SIZE 4096
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
29 #define DEFAULT_SAMPLE_SIZE 16
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
30 #define MAX_CHANNELS 8
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
31 #define ALAC_EXTRADATA_SIZE 36
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
32 #define ALAC_FRAME_HEADER_SIZE 55
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
33 #define ALAC_FRAME_FOOTER_SIZE 3
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
34
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
35 #define ALAC_ESCAPE_CODE 0x1FF
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
36 #define ALAC_MAX_LPC_ORDER 30
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
37 #define DEFAULT_MAX_PRED_ORDER 6
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
38 #define DEFAULT_MIN_PRED_ORDER 4
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
39 #define ALAC_MAX_LPC_PRECISION 9
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
40 #define ALAC_MAX_LPC_SHIFT 9
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
41
7617
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
42 #define ALAC_CHMODE_LEFT_RIGHT 0
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
43 #define ALAC_CHMODE_LEFT_SIDE 1
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
44 #define ALAC_CHMODE_RIGHT_SIDE 2
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
45 #define ALAC_CHMODE_MID_SIDE 3
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
46
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
47 typedef struct RiceContext {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
48 int history_mult;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
49 int initial_history;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
50 int k_modifier;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
51 int rice_modifier;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
52 } RiceContext;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
53
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
54 typedef struct LPCContext {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
55 int lpc_order;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
56 int lpc_coeff[ALAC_MAX_LPC_ORDER+1];
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
57 int lpc_quant;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
58 } LPCContext;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
59
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
60 typedef struct AlacEncodeContext {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
61 int compression_level;
7617
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
62 int min_prediction_order;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
63 int max_prediction_order;
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
64 int max_coded_frame_size;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
65 int write_sample_size;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
66 int32_t sample_buf[MAX_CHANNELS][DEFAULT_FRAME_SIZE];
7617
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
67 int32_t predictor_buf[DEFAULT_FRAME_SIZE];
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
68 int interlacing_shift;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
69 int interlacing_leftweight;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
70 PutBitContext pbctx;
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
71 RiceContext rc;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
72 LPCContext lpc[MAX_CHANNELS];
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
73 DSPContext dspctx;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
74 AVCodecContext *avctx;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
75 } AlacEncodeContext;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
76
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
77
12262
dde20597f15e Use "const" qualifier for pointers that point to input data of
reimar
parents: 12139
diff changeset
78 static void init_sample_buffers(AlacEncodeContext *s, const int16_t *input_samples)
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
79 {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
80 int ch, i;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
81
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
82 for(ch=0;ch<s->avctx->channels;ch++) {
12262
dde20597f15e Use "const" qualifier for pointers that point to input data of
reimar
parents: 12139
diff changeset
83 const int16_t *sptr = input_samples + ch;
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
84 for(i=0;i<s->avctx->frame_size;i++) {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
85 s->sample_buf[ch][i] = *sptr;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
86 sptr += s->avctx->channels;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
87 }
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
88 }
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
89 }
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
90
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
91 static void encode_scalar(AlacEncodeContext *s, int x, int k, int write_sample_size)
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
92 {
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
93 int divisor, q, r;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
94
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
95 k = FFMIN(k, s->rc.k_modifier);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
96 divisor = (1<<k) - 1;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
97 q = x / divisor;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
98 r = x % divisor;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
99
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
100 if(q > 8) {
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
101 // write escape code and sample value directly
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
102 put_bits(&s->pbctx, 9, ALAC_ESCAPE_CODE);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
103 put_bits(&s->pbctx, write_sample_size, x);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
104 } else {
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
105 if(q)
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
106 put_bits(&s->pbctx, q, (1<<q) - 1);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
107 put_bits(&s->pbctx, 1, 0);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
108
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
109 if(k != 1) {
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
110 if(r > 0)
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
111 put_bits(&s->pbctx, k, r+1);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
112 else
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
113 put_bits(&s->pbctx, k-1, 0);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
114 }
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
115 }
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
116 }
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
117
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
118 static void write_frame_header(AlacEncodeContext *s, int is_verbatim)
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
119 {
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
120 put_bits(&s->pbctx, 3, s->avctx->channels-1); // No. of channels -1
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
121 put_bits(&s->pbctx, 16, 0); // Seems to be zero
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
122 put_bits(&s->pbctx, 1, 1); // Sample count is in the header
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
123 put_bits(&s->pbctx, 2, 0); // FIXME: Wasted bytes field
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
124 put_bits(&s->pbctx, 1, is_verbatim); // Audio block is verbatim
10344
2b8a327189cd put_bits can only reliably write up to 31 bit bits, above it relies on
reimar
parents: 10173
diff changeset
125 put_bits32(&s->pbctx, s->avctx->frame_size); // No. of samples in the frame
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
126 }
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
127
7617
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
128 static void calc_predictor_params(AlacEncodeContext *s, int ch)
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
129 {
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
130 int32_t coefs[MAX_LPC_ORDER][MAX_LPC_ORDER];
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
131 int shift[MAX_LPC_ORDER];
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
132 int opt_order;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
133
10422
1c33160b0722 alacenc : use private compression_level value consistently.
jai_menon
parents: 10417
diff changeset
134 if (s->compression_level == 1) {
10417
952912ff616a alacenc : Move some code around for clarity.
jai_menon
parents: 10366
diff changeset
135 s->lpc[ch].lpc_order = 6;
952912ff616a alacenc : Move some code around for clarity.
jai_menon
parents: 10366
diff changeset
136 s->lpc[ch].lpc_quant = 6;
952912ff616a alacenc : Move some code around for clarity.
jai_menon
parents: 10366
diff changeset
137 s->lpc[ch].lpc_coeff[0] = 160;
952912ff616a alacenc : Move some code around for clarity.
jai_menon
parents: 10366
diff changeset
138 s->lpc[ch].lpc_coeff[1] = -190;
952912ff616a alacenc : Move some code around for clarity.
jai_menon
parents: 10366
diff changeset
139 s->lpc[ch].lpc_coeff[2] = 170;
952912ff616a alacenc : Move some code around for clarity.
jai_menon
parents: 10366
diff changeset
140 s->lpc[ch].lpc_coeff[3] = -130;
952912ff616a alacenc : Move some code around for clarity.
jai_menon
parents: 10366
diff changeset
141 s->lpc[ch].lpc_coeff[4] = 80;
952912ff616a alacenc : Move some code around for clarity.
jai_menon
parents: 10366
diff changeset
142 s->lpc[ch].lpc_coeff[5] = -25;
952912ff616a alacenc : Move some code around for clarity.
jai_menon
parents: 10366
diff changeset
143 } else {
10366
55f4c141dbb0 cosmetics: reindent and line wrap after last commit
jbr
parents: 10365
diff changeset
144 opt_order = ff_lpc_calc_coefs(&s->dspctx, s->sample_buf[ch],
55f4c141dbb0 cosmetics: reindent and line wrap after last commit
jbr
parents: 10365
diff changeset
145 s->avctx->frame_size,
55f4c141dbb0 cosmetics: reindent and line wrap after last commit
jbr
parents: 10365
diff changeset
146 s->min_prediction_order,
55f4c141dbb0 cosmetics: reindent and line wrap after last commit
jbr
parents: 10365
diff changeset
147 s->max_prediction_order,
12139
e59926e2c50c Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents: 11609
diff changeset
148 ALAC_MAX_LPC_PRECISION, coefs, shift,
e59926e2c50c Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
jbr
parents: 11609
diff changeset
149 AV_LPC_TYPE_LEVINSON, 0,
10366
55f4c141dbb0 cosmetics: reindent and line wrap after last commit
jbr
parents: 10365
diff changeset
150 ORDER_METHOD_EST, ALAC_MAX_LPC_SHIFT, 1);
7617
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
151
10366
55f4c141dbb0 cosmetics: reindent and line wrap after last commit
jbr
parents: 10365
diff changeset
152 s->lpc[ch].lpc_order = opt_order;
55f4c141dbb0 cosmetics: reindent and line wrap after last commit
jbr
parents: 10365
diff changeset
153 s->lpc[ch].lpc_quant = shift[opt_order-1];
55f4c141dbb0 cosmetics: reindent and line wrap after last commit
jbr
parents: 10365
diff changeset
154 memcpy(s->lpc[ch].lpc_coeff, coefs[opt_order-1], opt_order*sizeof(int));
10365
b44de7b79bee alacenc: add a fixed LPC coefficient mode as compression level 1. old
jbr
parents: 10344
diff changeset
155 }
7617
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
156 }
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
157
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
158 static int estimate_stereo_mode(int32_t *left_ch, int32_t *right_ch, int n)
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
159 {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
160 int i, best;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
161 int32_t lt, rt;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
162 uint64_t sum[4];
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
163 uint64_t score[4];
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
164
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
165 /* calculate sum of 2nd order residual for each channel */
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
166 sum[0] = sum[1] = sum[2] = sum[3] = 0;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
167 for(i=2; i<n; i++) {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
168 lt = left_ch[i] - 2*left_ch[i-1] + left_ch[i-2];
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
169 rt = right_ch[i] - 2*right_ch[i-1] + right_ch[i-2];
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
170 sum[2] += FFABS((lt + rt) >> 1);
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
171 sum[3] += FFABS(lt - rt);
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
172 sum[0] += FFABS(lt);
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
173 sum[1] += FFABS(rt);
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
174 }
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
175
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
176 /* calculate score for each mode */
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
177 score[0] = sum[0] + sum[1];
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
178 score[1] = sum[0] + sum[3];
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
179 score[2] = sum[1] + sum[3];
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
180 score[3] = sum[2] + sum[3];
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
181
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
182 /* return mode with lowest score */
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
183 best = 0;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
184 for(i=1; i<4; i++) {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
185 if(score[i] < score[best]) {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
186 best = i;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
187 }
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
188 }
7617
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
189 return best;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
190 }
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
191
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
192 static void alac_stereo_decorrelation(AlacEncodeContext *s)
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
193 {
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
194 int32_t *left = s->sample_buf[0], *right = s->sample_buf[1];
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
195 int i, mode, n = s->avctx->frame_size;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
196 int32_t tmp;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
197
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
198 mode = estimate_stereo_mode(left, right, n);
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
199
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
200 switch(mode)
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
201 {
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
202 case ALAC_CHMODE_LEFT_RIGHT:
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
203 s->interlacing_leftweight = 0;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
204 s->interlacing_shift = 0;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
205 break;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
206
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
207 case ALAC_CHMODE_LEFT_SIDE:
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
208 for(i=0; i<n; i++) {
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
209 right[i] = left[i] - right[i];
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
210 }
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
211 s->interlacing_leftweight = 1;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
212 s->interlacing_shift = 0;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
213 break;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
214
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
215 case ALAC_CHMODE_RIGHT_SIDE:
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
216 for(i=0; i<n; i++) {
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
217 tmp = right[i];
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
218 right[i] = left[i] - right[i];
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
219 left[i] = tmp + (right[i] >> 31);
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
220 }
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
221 s->interlacing_leftweight = 1;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
222 s->interlacing_shift = 31;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
223 break;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
224
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
225 default:
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
226 for(i=0; i<n; i++) {
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
227 tmp = left[i];
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
228 left[i] = (tmp + right[i]) >> 1;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
229 right[i] = tmp - right[i];
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
230 }
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
231 s->interlacing_leftweight = 1;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
232 s->interlacing_shift = 1;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
233 break;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
234 }
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
235 }
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
236
7619
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
237 static void alac_linear_predictor(AlacEncodeContext *s, int ch)
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
238 {
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
239 int i;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
240 LPCContext lpc = s->lpc[ch];
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
241
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
242 if(lpc.lpc_order == 31) {
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
243 s->predictor_buf[0] = s->sample_buf[ch][0];
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
244
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
245 for(i=1; i<s->avctx->frame_size; i++)
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
246 s->predictor_buf[i] = s->sample_buf[ch][i] - s->sample_buf[ch][i-1];
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
247
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
248 return;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
249 }
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
250
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
251 // generalised linear predictor
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
252
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
253 if(lpc.lpc_order > 0) {
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
254 int32_t *samples = s->sample_buf[ch];
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
255 int32_t *residual = s->predictor_buf;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
256
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
257 // generate warm-up samples
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
258 residual[0] = samples[0];
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
259 for(i=1;i<=lpc.lpc_order;i++)
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
260 residual[i] = samples[i] - samples[i-1];
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
261
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
262 // perform lpc on remaining samples
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
263 for(i = lpc.lpc_order + 1; i < s->avctx->frame_size; i++) {
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
264 int sum = 1 << (lpc.lpc_quant - 1), res_val, j;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
265
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
266 for (j = 0; j < lpc.lpc_order; j++) {
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
267 sum += (samples[lpc.lpc_order-j] - samples[0]) *
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
268 lpc.lpc_coeff[j];
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
269 }
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
270
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
271 sum >>= lpc.lpc_quant;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
272 sum += samples[0];
9110
ac31a0265eb9 Use sign_extend().
benoit
parents: 8261
diff changeset
273 residual[i] = sign_extend(samples[lpc.lpc_order+1] - sum,
ac31a0265eb9 Use sign_extend().
benoit
parents: 8261
diff changeset
274 s->write_sample_size);
7619
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
275 res_val = residual[i];
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
276
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
277 if(res_val) {
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
278 int index = lpc.lpc_order - 1;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
279 int neg = (res_val < 0);
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
280
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
281 while(index >= 0 && (neg ? (res_val < 0):(res_val > 0))) {
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
282 int val = samples[0] - samples[lpc.lpc_order - index];
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
283 int sign = (val ? FFSIGN(val) : 0);
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
284
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
285 if(neg)
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
286 sign*=-1;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
287
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
288 lpc.lpc_coeff[index] -= sign;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
289 val *= sign;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
290 res_val -= ((val >> lpc.lpc_quant) *
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
291 (lpc.lpc_order - index));
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
292 index--;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
293 }
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
294 }
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
295 samples++;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
296 }
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
297 }
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
298 }
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
299
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
300 static void alac_entropy_coder(AlacEncodeContext *s)
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
301 {
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
302 unsigned int history = s->rc.initial_history;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
303 int sign_modifier = 0, i, k;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
304 int32_t *samples = s->predictor_buf;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
305
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
306 for(i=0;i < s->avctx->frame_size;) {
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
307 int x;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
308
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
309 k = av_log2((history >> 9) + 3);
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
310
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
311 x = -2*(*samples)-1;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
312 x ^= (x>>31);
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
313
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
314 samples++;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
315 i++;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
316
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
317 encode_scalar(s, x - sign_modifier, k, s->write_sample_size);
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
318
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
319 history += x * s->rc.history_mult
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
320 - ((history * s->rc.history_mult) >> 9);
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
321
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
322 sign_modifier = 0;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
323 if(x > 0xFFFF)
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
324 history = 0xFFFF;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
325
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
326 if((history < 128) && (i < s->avctx->frame_size)) {
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
327 unsigned int block_size = 0;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
328
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
329 k = 7 - av_log2(history) + ((history + 16) >> 6);
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
330
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
331 while((*samples == 0) && (i < s->avctx->frame_size)) {
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
332 samples++;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
333 i++;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
334 block_size++;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
335 }
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
336 encode_scalar(s, block_size, k, 16);
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
337
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
338 sign_modifier = (block_size <= 0xFFFF);
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
339
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
340 history = 0;
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
341 }
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
342
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
343 }
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
344 }
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
345
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
346 static void write_compressed_frame(AlacEncodeContext *s)
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
347 {
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
348 int i, j;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
349
7659
b87a9296e854 alacenc : perform decorrelation only for stereo samples
jai_menon
parents: 7620
diff changeset
350 if(s->avctx->channels == 2)
b87a9296e854 alacenc : perform decorrelation only for stereo samples
jai_menon
parents: 7620
diff changeset
351 alac_stereo_decorrelation(s);
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
352 put_bits(&s->pbctx, 8, s->interlacing_shift);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
353 put_bits(&s->pbctx, 8, s->interlacing_leftweight);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
354
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
355 for(i=0;i<s->avctx->channels;i++) {
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
356
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
357 calc_predictor_params(s, i);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
358
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
359 put_bits(&s->pbctx, 4, 0); // prediction type : currently only type 0 has been RE'd
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
360 put_bits(&s->pbctx, 4, s->lpc[i].lpc_quant);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
361
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
362 put_bits(&s->pbctx, 3, s->rc.rice_modifier);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
363 put_bits(&s->pbctx, 5, s->lpc[i].lpc_order);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
364 // predictor coeff. table
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
365 for(j=0;j<s->lpc[i].lpc_order;j++) {
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
366 put_sbits(&s->pbctx, 16, s->lpc[i].lpc_coeff[j]);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
367 }
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
368 }
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
369
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
370 // apply lpc and entropy coding to audio samples
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
371
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
372 for(i=0;i<s->avctx->channels;i++) {
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
373 alac_linear_predictor(s, i);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
374 alac_entropy_coder(s);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
375 }
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
376 }
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
377
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
378 static av_cold int alac_encode_init(AVCodecContext *avctx)
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
379 {
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
380 AlacEncodeContext *s = avctx->priv_data;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
381 uint8_t *alac_extradata = av_mallocz(ALAC_EXTRADATA_SIZE+1);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
382
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
383 avctx->frame_size = DEFAULT_FRAME_SIZE;
7823
4525dcd81357 Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents: 7659
diff changeset
384 avctx->bits_per_coded_sample = DEFAULT_SAMPLE_SIZE;
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
385
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
386 if(avctx->sample_fmt != SAMPLE_FMT_S16) {
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
387 av_log(avctx, AV_LOG_ERROR, "only pcm_s16 input samples are supported\n");
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
388 return -1;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
389 }
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
390
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
391 // Set default compression level
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
392 if(avctx->compression_level == FF_COMPRESSION_DEFAULT)
10365
b44de7b79bee alacenc: add a fixed LPC coefficient mode as compression level 1. old
jbr
parents: 10344
diff changeset
393 s->compression_level = 2;
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
394 else
10365
b44de7b79bee alacenc: add a fixed LPC coefficient mode as compression level 1. old
jbr
parents: 10344
diff changeset
395 s->compression_level = av_clip(avctx->compression_level, 0, 2);
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
396
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
397 // Initialize default Rice parameters
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
398 s->rc.history_mult = 40;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
399 s->rc.initial_history = 10;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
400 s->rc.k_modifier = 14;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
401 s->rc.rice_modifier = 4;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
402
10173
f55ca9a2b948 Fix max_coded_frame_size computation to account for byte alignment.
jai_menon
parents: 9428
diff changeset
403 s->max_coded_frame_size = 8 + (avctx->frame_size*avctx->channels*avctx->bits_per_coded_sample>>3);
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
404
7823
4525dcd81357 Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents: 7659
diff changeset
405 s->write_sample_size = avctx->bits_per_coded_sample + avctx->channels - 1; // FIXME: consider wasted_bytes
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
406
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
407 AV_WB32(alac_extradata, ALAC_EXTRADATA_SIZE);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
408 AV_WB32(alac_extradata+4, MKBETAG('a','l','a','c'));
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
409 AV_WB32(alac_extradata+12, avctx->frame_size);
7823
4525dcd81357 Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents: 7659
diff changeset
410 AV_WB8 (alac_extradata+17, avctx->bits_per_coded_sample);
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
411 AV_WB8 (alac_extradata+21, avctx->channels);
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
412 AV_WB32(alac_extradata+24, s->max_coded_frame_size);
7823
4525dcd81357 Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents: 7659
diff changeset
413 AV_WB32(alac_extradata+28, avctx->sample_rate*avctx->channels*avctx->bits_per_coded_sample); // average bitrate
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
414 AV_WB32(alac_extradata+32, avctx->sample_rate);
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
415
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
416 // Set relevant extradata fields
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
417 if(s->compression_level > 0) {
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
418 AV_WB8(alac_extradata+18, s->rc.history_mult);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
419 AV_WB8(alac_extradata+19, s->rc.initial_history);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
420 AV_WB8(alac_extradata+20, s->rc.k_modifier);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
421 }
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
422
7619
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
423 s->min_prediction_order = DEFAULT_MIN_PRED_ORDER;
7617
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
424 if(avctx->min_prediction_order >= 0) {
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
425 if(avctx->min_prediction_order < MIN_LPC_ORDER ||
7620
5c2299115d1f alacenc: compare against ALAC_MAX_LPC_ORDER instead of MAX_LPC_ORDER
jai_menon
parents: 7619
diff changeset
426 avctx->min_prediction_order > ALAC_MAX_LPC_ORDER) {
7617
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
427 av_log(avctx, AV_LOG_ERROR, "invalid min prediction order: %d\n", avctx->min_prediction_order);
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
428 return -1;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
429 }
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
430
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
431 s->min_prediction_order = avctx->min_prediction_order;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
432 }
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
433
7619
0753d03d232a alacenc: last few hunks approved by michael
jai_menon
parents: 7618
diff changeset
434 s->max_prediction_order = DEFAULT_MAX_PRED_ORDER;
7617
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
435 if(avctx->max_prediction_order >= 0) {
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
436 if(avctx->max_prediction_order < MIN_LPC_ORDER ||
7620
5c2299115d1f alacenc: compare against ALAC_MAX_LPC_ORDER instead of MAX_LPC_ORDER
jai_menon
parents: 7619
diff changeset
437 avctx->max_prediction_order > ALAC_MAX_LPC_ORDER) {
7617
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
438 av_log(avctx, AV_LOG_ERROR, "invalid max prediction order: %d\n", avctx->max_prediction_order);
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
439 return -1;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
440 }
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
441
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
442 s->max_prediction_order = avctx->max_prediction_order;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
443 }
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
444
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
445 if(s->max_prediction_order < s->min_prediction_order) {
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
446 av_log(avctx, AV_LOG_ERROR, "invalid prediction orders: min=%d max=%d\n",
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
447 s->min_prediction_order, s->max_prediction_order);
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
448 return -1;
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
449 }
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
450
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
451 avctx->extradata = alac_extradata;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
452 avctx->extradata_size = ALAC_EXTRADATA_SIZE;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
453
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
454 avctx->coded_frame = avcodec_alloc_frame();
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
455 avctx->coded_frame->key_frame = 1;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
456
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
457 s->avctx = avctx;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
458 dsputil_init(&s->dspctx, avctx);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
459
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
460 return 0;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
461 }
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
462
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
463 static int alac_encode_frame(AVCodecContext *avctx, uint8_t *frame,
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
464 int buf_size, void *data)
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
465 {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
466 AlacEncodeContext *s = avctx->priv_data;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
467 PutBitContext *pb = &s->pbctx;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
468 int i, out_bytes, verbatim_flag = 0;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
469
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
470 if(avctx->frame_size > DEFAULT_FRAME_SIZE) {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
471 av_log(avctx, AV_LOG_ERROR, "input frame size exceeded\n");
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
472 return -1;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
473 }
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
474
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
475 if(buf_size < 2*s->max_coded_frame_size) {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
476 av_log(avctx, AV_LOG_ERROR, "buffer size is too small\n");
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
477 return -1;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
478 }
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
479
7617
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
480 verbatim:
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
481 init_put_bits(pb, frame, buf_size);
924dc060db81 Import more OKed parts of ALAC encoder from GSoC repo.
ramiro
parents: 7604
diff changeset
482
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
483 if((s->compression_level == 0) || verbatim_flag) {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
484 // Verbatim mode
12262
dde20597f15e Use "const" qualifier for pointers that point to input data of
reimar
parents: 12139
diff changeset
485 const int16_t *samples = data;
7604
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
486 write_frame_header(s, 1);
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
487 for(i=0; i<avctx->frame_size*avctx->channels; i++) {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
488 put_sbits(pb, 16, *samples++);
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
489 }
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
490 } else {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
491 init_sample_buffers(s, data);
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
492 write_frame_header(s, 0);
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
493 write_compressed_frame(s);
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
494 }
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
495
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
496 put_bits(pb, 3, 7);
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
497 flush_put_bits(pb);
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
498 out_bytes = put_bits_count(pb) >> 3;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
499
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
500 if(out_bytes > s->max_coded_frame_size) {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
501 /* frame too large. use verbatim mode */
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
502 if(verbatim_flag || (s->compression_level == 0)) {
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
503 /* still too large. must be an error. */
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
504 av_log(avctx, AV_LOG_ERROR, "error encoding frame\n");
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
505 return -1;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
506 }
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
507 verbatim_flag = 1;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
508 goto verbatim;
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
509 }
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
510
6250ff63990b Import more ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents: 7598
diff changeset
511 return out_bytes;
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
512 }
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
513
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
514 static av_cold int alac_encode_close(AVCodecContext *avctx)
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
515 {
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
516 av_freep(&avctx->extradata);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
517 avctx->extradata_size = 0;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
518 av_freep(&avctx->coded_frame);
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
519 return 0;
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
520 }
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
521
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
522 AVCodec alac_encoder = {
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
523 "alac",
11560
8a4984c5cacc Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents: 10422
diff changeset
524 AVMEDIA_TYPE_AUDIO,
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
525 CODEC_ID_ALAC,
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
526 sizeof(AlacEncodeContext),
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
527 alac_encode_init,
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
528 alac_encode_frame,
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
529 alac_encode_close,
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
530 .capabilities = CODEC_CAP_SMALL_LAST_FRAME,
11594
7942a09aac64 alacenc : Report supported input sample formats.
jai_menon
parents: 11560
diff changeset
531 .sample_fmts = (const enum SampleFormat[]){ SAMPLE_FMT_S16, SAMPLE_FMT_NONE},
7598
60dd0089cdba alacenc: NULL_IF_CONFIG_SMALL long_name.
ramiro
parents: 7595
diff changeset
532 .long_name = NULL_IF_CONFIG_SMALL("ALAC (Apple Lossless Audio Codec)"),
7595
30af3a9775de Import ok'd parts of ALAC encoder from GSoC repo.
ramiro
parents:
diff changeset
533 };