]> git.sesse.net Git - ffmpeg/blob - libavcodec/s302m.c
Remove unused variables
[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 Libav.
7  *
8  * Libav 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  * Libav 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 Libav; 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 = SAMPLE_FMT_S32;
62     else
63         avctx->sample_fmt = SAMPLE_FMT_S16;
64
65     avctx->channels    = channels;
66     avctx->sample_rate = 48000;
67     avctx->bit_rate    = 48000 * avctx->channels * (avctx->bits_per_coded_sample + 4) +
68                          32 * (48000 / (buf_size * 8 /
69                                         (avctx->channels *
70                                          (avctx->bits_per_coded_sample + 4))));
71
72     return frame_size;
73 }
74
75 static int s302m_decode_frame(AVCodecContext *avctx, void *data,
76                               int *data_size, AVPacket *avpkt)
77 {
78     const uint8_t *buf = avpkt->data;
79     int buf_size       = avpkt->size;
80
81     int frame_size = s302m_parse_frame_header(avctx, buf, buf_size);
82     if (frame_size < 0)
83         return frame_size;
84
85     buf_size -= AES3_HEADER_LEN;
86     buf      += AES3_HEADER_LEN;
87
88     if (*data_size < 4 * buf_size * 8 / (avctx->bits_per_coded_sample + 4))
89         return -1;
90
91     if (avctx->bits_per_coded_sample == 24) {
92         uint32_t *o = data;
93         for (; buf_size > 6; buf_size -= 7) {
94             *o++ = (av_reverse[buf[2]]        << 24) |
95                    (av_reverse[buf[1]]        << 16) |
96                    (av_reverse[buf[0]]        <<  8);
97             *o++ = (av_reverse[buf[6] & 0xf0] << 28) |
98                    (av_reverse[buf[5]]        << 20) |
99                    (av_reverse[buf[4]]        << 12) |
100                    (av_reverse[buf[3] & 0x0f] <<  8);
101             buf += 7;
102         }
103         *data_size = (uint8_t*) o - (uint8_t*) data;
104     } else if (avctx->bits_per_coded_sample == 20) {
105         uint32_t *o = data;
106         for (; buf_size > 5; buf_size -= 6) {
107             *o++ = (av_reverse[buf[2] & 0xf0] << 28) |
108                    (av_reverse[buf[1]]        << 20) |
109                    (av_reverse[buf[0]]        << 12);
110             *o++ = (av_reverse[buf[5] & 0xf0] << 28) |
111                    (av_reverse[buf[4]]        << 20) |
112                    (av_reverse[buf[3]]        << 12);
113             buf += 6;
114         }
115         *data_size = (uint8_t*) o - (uint8_t*) data;
116     } else {
117         uint16_t *o = data;
118         for (; buf_size > 4; buf_size -= 5) {
119             *o++ = (av_reverse[buf[1]]        <<  8) |
120                     av_reverse[buf[0]];
121             *o++ = (av_reverse[buf[4] & 0xf0] << 12) |
122                    (av_reverse[buf[3]]        <<  4) |
123                     av_reverse[buf[2] & 0x0f];
124             buf += 5;
125         }
126         *data_size = (uint8_t*) o - (uint8_t*) data;
127     }
128
129     return buf - avpkt->data;
130 }
131
132
133 AVCodec ff_s302m_decoder = {
134     .name           = "s302m",
135     .type           = AVMEDIA_TYPE_AUDIO,
136     .id             = CODEC_ID_S302M,
137     .priv_data_size = 0,
138     .decode         = s302m_decode_frame,
139     .long_name      = NULL_IF_CONFIG_SMALL("SMPTE 302M"),
140 };