]> git.sesse.net Git - ffmpeg/blob - libavcodec/s302m.c
Merge remote-tracking branch 'qatar/master'
[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 static int s302m_parse_frame_header(AVCodecContext *avctx, const uint8_t *buf,
29                                     int buf_size)
30 {
31     uint32_t h;
32     int frame_size, channels, bits;
33
34     if (buf_size <= AES3_HEADER_LEN) {
35         av_log(avctx, AV_LOG_ERROR, "frame is too short\n");
36         return AVERROR_INVALIDDATA;
37     }
38
39     /*
40      * AES3 header :
41      * size:            16
42      * number channels   2
43      * channel_id        8
44      * bits per samples  2
45      * alignments        4
46      */
47
48     h = AV_RB32(buf);
49     frame_size =  (h >> 16) & 0xffff;
50     channels   = ((h >> 14) & 0x0003) * 2 +  2;
51     bits       = ((h >>  4) & 0x0003) * 4 + 16;
52
53     if (AES3_HEADER_LEN + frame_size != buf_size || bits > 24) {
54         av_log(avctx, AV_LOG_ERROR, "frame has invalid header\n");
55         return AVERROR_INVALIDDATA;
56     }
57
58     /* Set output properties */
59     avctx->bits_per_coded_sample = bits;
60     if (bits > 16)
61         avctx->sample_fmt = AV_SAMPLE_FMT_S32;
62     else
63         avctx->sample_fmt = AV_SAMPLE_FMT_S16;
64
65     avctx->channels    = channels;
66     switch(channels) {
67         case 2:
68             avctx->channel_layout = AV_CH_LAYOUT_STEREO;
69             break;
70         case 4:
71             avctx->channel_layout = AV_CH_LAYOUT_QUAD;
72             break;
73         case 8:
74             avctx->channel_layout = AV_CH_LAYOUT_5POINT1_BACK | AV_CH_LAYOUT_STEREO_DOWNMIX;
75     }
76     avctx->sample_rate = 48000;
77     avctx->bit_rate    = 48000 * avctx->channels * (avctx->bits_per_coded_sample + 4) +
78                          32 * (48000 / (buf_size * 8 /
79                                         (avctx->channels *
80                                          (avctx->bits_per_coded_sample + 4))));
81
82     return frame_size;
83 }
84
85 static int s302m_decode_frame(AVCodecContext *avctx, void *data,
86                               int *data_size, AVPacket *avpkt)
87 {
88     const uint8_t *buf = avpkt->data;
89     int buf_size       = avpkt->size;
90
91     int frame_size = s302m_parse_frame_header(avctx, buf, buf_size);
92     if (frame_size < 0)
93         return frame_size;
94
95     buf_size -= AES3_HEADER_LEN;
96     buf      += AES3_HEADER_LEN;
97
98     if (*data_size < 4 * buf_size * 8 / (avctx->bits_per_coded_sample + 4))
99         return -1;
100
101     if (avctx->bits_per_coded_sample == 24) {
102         uint32_t *o = data;
103         for (; buf_size > 6; buf_size -= 7) {
104             *o++ = (av_reverse[buf[2]]        << 24) |
105                    (av_reverse[buf[1]]        << 16) |
106                    (av_reverse[buf[0]]        <<  8);
107             *o++ = (av_reverse[buf[6] & 0xf0] << 28) |
108                    (av_reverse[buf[5]]        << 20) |
109                    (av_reverse[buf[4]]        << 12) |
110                    (av_reverse[buf[3] & 0x0f] <<  4);
111             buf += 7;
112         }
113         *data_size = (uint8_t*) o - (uint8_t*) data;
114     } else if (avctx->bits_per_coded_sample == 20) {
115         uint32_t *o = data;
116         for (; buf_size > 5; buf_size -= 6) {
117             *o++ = (av_reverse[buf[2] & 0xf0] << 28) |
118                    (av_reverse[buf[1]]        << 20) |
119                    (av_reverse[buf[0]]        << 12);
120             *o++ = (av_reverse[buf[5] & 0xf0] << 28) |
121                    (av_reverse[buf[4]]        << 20) |
122                    (av_reverse[buf[3]]        << 12);
123             buf += 6;
124         }
125         *data_size = (uint8_t*) o - (uint8_t*) data;
126     } else {
127         uint16_t *o = data;
128         for (; buf_size > 4; buf_size -= 5) {
129             *o++ = (av_reverse[buf[1]]        <<  8) |
130                     av_reverse[buf[0]];
131             *o++ = (av_reverse[buf[4] & 0xf0] << 12) |
132                    (av_reverse[buf[3]]        <<  4) |
133                    (av_reverse[buf[2]]        >>  4);
134             buf += 5;
135         }
136         *data_size = (uint8_t*) o - (uint8_t*) data;
137     }
138
139     return buf - avpkt->data;
140 }
141
142
143 AVCodec ff_s302m_decoder = {
144     .name           = "s302m",
145     .type           = AVMEDIA_TYPE_AUDIO,
146     .id             = CODEC_ID_S302M,
147     .priv_data_size = 0,
148     .decode         = s302m_decode_frame,
149     .long_name      = NULL_IF_CONFIG_SMALL("SMPTE 302M"),
150 };