]> git.sesse.net Git - ffmpeg/blob - libavcodec/s302m.c
idct_sse2_xvid: remove libavutil/internal.h include
[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/common.h"
24 #include "libavutil/intreadwrite.h"
25 #include "avcodec.h"
26
27 #define AES3_HEADER_LEN 4
28
29 typedef struct S302MDecodeContext {
30     AVFrame frame;
31 } S302MDecodeContext;
32
33 static int s302m_parse_frame_header(AVCodecContext *avctx, const uint8_t *buf,
34                                     int buf_size)
35 {
36     uint32_t h;
37     int frame_size, channels, bits;
38
39     if (buf_size <= AES3_HEADER_LEN) {
40         av_log(avctx, AV_LOG_ERROR, "frame is too short\n");
41         return AVERROR_INVALIDDATA;
42     }
43
44     /*
45      * AES3 header :
46      * size:            16
47      * number channels   2
48      * channel_id        8
49      * bits per samples  2
50      * alignments        4
51      */
52
53     h = AV_RB32(buf);
54     frame_size =  (h >> 16) & 0xffff;
55     channels   = ((h >> 14) & 0x0003) * 2 +  2;
56     bits       = ((h >>  4) & 0x0003) * 4 + 16;
57
58     if (AES3_HEADER_LEN + frame_size != buf_size || bits > 24) {
59         av_log(avctx, AV_LOG_ERROR, "frame has invalid header\n");
60         return AVERROR_INVALIDDATA;
61     }
62
63     /* Set output properties */
64     avctx->bits_per_coded_sample = bits;
65     if (bits > 16)
66         avctx->sample_fmt = AV_SAMPLE_FMT_S32;
67     else
68         avctx->sample_fmt = AV_SAMPLE_FMT_S16;
69
70     avctx->channels    = channels;
71     switch(channels) {
72         case 2:
73             avctx->channel_layout = AV_CH_LAYOUT_STEREO;
74             break;
75         case 4:
76             avctx->channel_layout = AV_CH_LAYOUT_QUAD;
77             break;
78         case 6:
79             avctx->channel_layout = AV_CH_LAYOUT_5POINT1_BACK;
80             break;
81         case 8:
82             avctx->channel_layout = AV_CH_LAYOUT_5POINT1_BACK | AV_CH_LAYOUT_STEREO_DOWNMIX;
83     }
84     avctx->sample_rate = 48000;
85     avctx->bit_rate    = 48000 * avctx->channels * (avctx->bits_per_coded_sample + 4) +
86                          32 * (48000 / (buf_size * 8 /
87                                         (avctx->channels *
88                                          (avctx->bits_per_coded_sample + 4))));
89
90     return frame_size;
91 }
92
93 static int s302m_decode_frame(AVCodecContext *avctx, void *data,
94                               int *got_frame_ptr, AVPacket *avpkt)
95 {
96     S302MDecodeContext *s = avctx->priv_data;
97     const uint8_t *buf = avpkt->data;
98     int buf_size       = avpkt->size;
99     int block_size, ret;
100
101     int frame_size = s302m_parse_frame_header(avctx, buf, buf_size);
102     if (frame_size < 0)
103         return frame_size;
104
105     buf_size -= AES3_HEADER_LEN;
106     buf      += AES3_HEADER_LEN;
107
108     /* get output buffer */
109     block_size = (avctx->bits_per_coded_sample + 4) / 4;
110     s->frame.nb_samples = 2 * (buf_size / block_size) / avctx->channels;
111     if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
112         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
113         return ret;
114     }
115
116     buf_size = (s->frame.nb_samples * avctx->channels / 2) * block_size;
117
118     if (avctx->bits_per_coded_sample == 24) {
119         uint32_t *o = (uint32_t *)s->frame.data[0];
120         for (; buf_size > 6; buf_size -= 7) {
121             *o++ = (av_reverse[buf[2]]        << 24) |
122                    (av_reverse[buf[1]]        << 16) |
123                    (av_reverse[buf[0]]        <<  8);
124             *o++ = (av_reverse[buf[6] & 0xf0] << 28) |
125                    (av_reverse[buf[5]]        << 20) |
126                    (av_reverse[buf[4]]        << 12) |
127                    (av_reverse[buf[3] & 0x0f] <<  4);
128             buf += 7;
129         }
130     } else if (avctx->bits_per_coded_sample == 20) {
131         uint32_t *o = (uint32_t *)s->frame.data[0];
132         for (; buf_size > 5; buf_size -= 6) {
133             *o++ = (av_reverse[buf[2] & 0xf0] << 28) |
134                    (av_reverse[buf[1]]        << 20) |
135                    (av_reverse[buf[0]]        << 12);
136             *o++ = (av_reverse[buf[5] & 0xf0] << 28) |
137                    (av_reverse[buf[4]]        << 20) |
138                    (av_reverse[buf[3]]        << 12);
139             buf += 6;
140         }
141     } else {
142         uint16_t *o = (uint16_t *)s->frame.data[0];
143         for (; buf_size > 4; buf_size -= 5) {
144             *o++ = (av_reverse[buf[1]]        <<  8) |
145                     av_reverse[buf[0]];
146             *o++ = (av_reverse[buf[4] & 0xf0] << 12) |
147                    (av_reverse[buf[3]]        <<  4) |
148                    (av_reverse[buf[2]]        >>  4);
149             buf += 5;
150         }
151     }
152
153     *got_frame_ptr   = 1;
154     *(AVFrame *)data = s->frame;
155
156     return avpkt->size;
157 }
158
159 static int s302m_decode_init(AVCodecContext *avctx)
160 {
161     S302MDecodeContext *s = avctx->priv_data;
162
163     avcodec_get_frame_defaults(&s->frame);
164     avctx->coded_frame = &s->frame;
165
166     return 0;
167 }
168
169
170 AVCodec ff_s302m_decoder = {
171     .name           = "s302m",
172     .type           = AVMEDIA_TYPE_AUDIO,
173     .id             = AV_CODEC_ID_S302M,
174     .priv_data_size = sizeof(S302MDecodeContext),
175     .init           = s302m_decode_init,
176     .decode         = s302m_decode_frame,
177     .capabilities   = CODEC_CAP_DR1,
178     .long_name      = NULL_IF_CONFIG_SMALL("SMPTE 302M"),
179 };