]> git.sesse.net Git - ffmpeg/blob - libavcodec/s302m.c
g723.1dec: Make postfilter user switchable
[ffmpeg] / libavcodec / s302m.c
1 /*
2  * SMPTE 302M decoder
3  * Copyright (c) 2008 Laurent Aimar <fenrir@videolan.org>
4  * Copyright (c) 2009 Baptiste Coudurier <baptiste.coudurier@gmail.com>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include "libavutil/intreadwrite.h"
24 #include "avcodec.h"
25
26 #define AES3_HEADER_LEN 4
27
28 typedef struct S302MDecodeContext {
29     AVFrame frame;
30 } S302MDecodeContext;
31
32 static int s302m_parse_frame_header(AVCodecContext *avctx, const uint8_t *buf,
33                                     int buf_size)
34 {
35     uint32_t h;
36     int frame_size, channels, bits;
37
38     if (buf_size <= AES3_HEADER_LEN) {
39         av_log(avctx, AV_LOG_ERROR, "frame is too short\n");
40         return AVERROR_INVALIDDATA;
41     }
42
43     /*
44      * AES3 header :
45      * size:            16
46      * number channels   2
47      * channel_id        8
48      * bits per samples  2
49      * alignments        4
50      */
51
52     h = AV_RB32(buf);
53     frame_size =  (h >> 16) & 0xffff;
54     channels   = ((h >> 14) & 0x0003) * 2 +  2;
55     bits       = ((h >>  4) & 0x0003) * 4 + 16;
56
57     if (AES3_HEADER_LEN + frame_size != buf_size || bits > 24) {
58         av_log(avctx, AV_LOG_ERROR, "frame has invalid header\n");
59         return AVERROR_INVALIDDATA;
60     }
61
62     /* Set output properties */
63     avctx->bits_per_coded_sample = bits;
64     if (bits > 16)
65         avctx->sample_fmt = AV_SAMPLE_FMT_S32;
66     else
67         avctx->sample_fmt = AV_SAMPLE_FMT_S16;
68
69     avctx->channels    = channels;
70     switch(channels) {
71         case 2:
72             avctx->channel_layout = AV_CH_LAYOUT_STEREO;
73             break;
74         case 4:
75             avctx->channel_layout = AV_CH_LAYOUT_QUAD;
76             break;
77         case 6:
78             avctx->channel_layout = AV_CH_LAYOUT_5POINT1_BACK;
79             break;
80         case 8:
81             avctx->channel_layout = AV_CH_LAYOUT_5POINT1_BACK | AV_CH_LAYOUT_STEREO_DOWNMIX;
82     }
83     avctx->sample_rate = 48000;
84     avctx->bit_rate    = 48000 * avctx->channels * (avctx->bits_per_coded_sample + 4) +
85                          32 * (48000 / (buf_size * 8 /
86                                         (avctx->channels *
87                                          (avctx->bits_per_coded_sample + 4))));
88
89     return frame_size;
90 }
91
92 static int s302m_decode_frame(AVCodecContext *avctx, void *data,
93                               int *got_frame_ptr, AVPacket *avpkt)
94 {
95     S302MDecodeContext *s = avctx->priv_data;
96     const uint8_t *buf = avpkt->data;
97     int buf_size       = avpkt->size;
98     int block_size, ret;
99
100     int frame_size = s302m_parse_frame_header(avctx, buf, buf_size);
101     if (frame_size < 0)
102         return frame_size;
103
104     buf_size -= AES3_HEADER_LEN;
105     buf      += AES3_HEADER_LEN;
106
107     /* get output buffer */
108     block_size = (avctx->bits_per_coded_sample + 4) / 4;
109     s->frame.nb_samples = 2 * (buf_size / block_size) / avctx->channels;
110     if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
111         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
112         return ret;
113     }
114
115     buf_size = (s->frame.nb_samples * avctx->channels / 2) * block_size;
116
117     if (avctx->bits_per_coded_sample == 24) {
118         uint32_t *o = (uint32_t *)s->frame.data[0];
119         for (; buf_size > 6; buf_size -= 7) {
120             *o++ = (av_reverse[buf[2]]        << 24) |
121                    (av_reverse[buf[1]]        << 16) |
122                    (av_reverse[buf[0]]        <<  8);
123             *o++ = (av_reverse[buf[6] & 0xf0] << 28) |
124                    (av_reverse[buf[5]]        << 20) |
125                    (av_reverse[buf[4]]        << 12) |
126                    (av_reverse[buf[3] & 0x0f] <<  4);
127             buf += 7;
128         }
129     } else if (avctx->bits_per_coded_sample == 20) {
130         uint32_t *o = (uint32_t *)s->frame.data[0];
131         for (; buf_size > 5; buf_size -= 6) {
132             *o++ = (av_reverse[buf[2] & 0xf0] << 28) |
133                    (av_reverse[buf[1]]        << 20) |
134                    (av_reverse[buf[0]]        << 12);
135             *o++ = (av_reverse[buf[5] & 0xf0] << 28) |
136                    (av_reverse[buf[4]]        << 20) |
137                    (av_reverse[buf[3]]        << 12);
138             buf += 6;
139         }
140     } else {
141         uint16_t *o = (uint16_t *)s->frame.data[0];
142         for (; buf_size > 4; buf_size -= 5) {
143             *o++ = (av_reverse[buf[1]]        <<  8) |
144                     av_reverse[buf[0]];
145             *o++ = (av_reverse[buf[4] & 0xf0] << 12) |
146                    (av_reverse[buf[3]]        <<  4) |
147                    (av_reverse[buf[2]]        >>  4);
148             buf += 5;
149         }
150     }
151
152     *got_frame_ptr   = 1;
153     *(AVFrame *)data = s->frame;
154
155     return avpkt->size;
156 }
157
158 static int s302m_decode_init(AVCodecContext *avctx)
159 {
160     S302MDecodeContext *s = avctx->priv_data;
161
162     avcodec_get_frame_defaults(&s->frame);
163     avctx->coded_frame = &s->frame;
164
165     return 0;
166 }
167
168
169 AVCodec ff_s302m_decoder = {
170     .name           = "s302m",
171     .type           = AVMEDIA_TYPE_AUDIO,
172     .id             = CODEC_ID_S302M,
173     .priv_data_size = sizeof(S302MDecodeContext),
174     .init           = s302m_decode_init,
175     .decode         = s302m_decode_frame,
176     .capabilities   = CODEC_CAP_DR1,
177     .long_name      = NULL_IF_CONFIG_SMALL("SMPTE 302M"),
178 };