FFmpeg  2.6.9
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
s302m.c
Go to the documentation of this file.
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 "libavutil/log.h"
25 #include "avcodec.h"
26 #include "internal.h"
27 #include "mathops.h"
28 
29 #define AES3_HEADER_LEN 4
30 
32  int buf_size)
33 {
34  uint32_t h;
35  int frame_size, channels, bits;
36 
37  if (buf_size <= AES3_HEADER_LEN) {
38  av_log(avctx, AV_LOG_ERROR, "frame is too short\n");
39  return AVERROR_INVALIDDATA;
40  }
41 
42  /*
43  * AES3 header :
44  * size: 16
45  * number channels 2
46  * channel_id 8
47  * bits per samples 2
48  * alignments 4
49  */
50 
51  h = AV_RB32(buf);
52  frame_size = (h >> 16) & 0xffff;
53  channels = ((h >> 14) & 0x0003) * 2 + 2;
54  bits = ((h >> 4) & 0x0003) * 4 + 16;
55 
56  if (AES3_HEADER_LEN + frame_size != buf_size || bits > 24) {
57  av_log(avctx, AV_LOG_ERROR, "frame has invalid header\n");
58  return AVERROR_INVALIDDATA;
59  }
60 
61  /* Set output properties */
62  avctx->bits_per_raw_sample = bits;
63  if (bits > 16)
65  else
67 
68  avctx->channels = channels;
69  switch(channels) {
70  case 2:
72  break;
73  case 4:
75  break;
76  case 6:
78  break;
79  case 8:
81  }
82 
83  return frame_size;
84 }
85 
86 static int s302m_decode_frame(AVCodecContext *avctx, void *data,
87  int *got_frame_ptr, AVPacket *avpkt)
88 {
89  AVFrame *frame = data;
90  const uint8_t *buf = avpkt->data;
91  int buf_size = avpkt->size;
92  int block_size, ret;
93 
94  int frame_size = s302m_parse_frame_header(avctx, buf, buf_size);
95  if (frame_size < 0)
96  return frame_size;
97 
98  buf_size -= AES3_HEADER_LEN;
99  buf += AES3_HEADER_LEN;
100 
101  /* get output buffer */
102  block_size = (avctx->bits_per_raw_sample + 4) / 4;
103  frame->nb_samples = 2 * (buf_size / block_size) / avctx->channels;
104  if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
105  return ret;
106 
107  avctx->bit_rate = 48000 * avctx->channels * (avctx->bits_per_raw_sample + 4) +
108  32 * 48000 / frame->nb_samples;
109  buf_size = (frame->nb_samples * avctx->channels / 2) * block_size;
110 
111  if (avctx->bits_per_raw_sample == 24) {
112  uint32_t *o = (uint32_t *)frame->data[0];
113  for (; buf_size > 6; buf_size -= 7) {
114  *o++ = (ff_reverse[buf[2]] << 24) |
115  (ff_reverse[buf[1]] << 16) |
116  (ff_reverse[buf[0]] << 8);
117  *o++ = (ff_reverse[buf[6] & 0xf0] << 28) |
118  (ff_reverse[buf[5]] << 20) |
119  (ff_reverse[buf[4]] << 12) |
120  (ff_reverse[buf[3] & 0x0f] << 4);
121  buf += 7;
122  }
123  } else if (avctx->bits_per_raw_sample == 20) {
124  uint32_t *o = (uint32_t *)frame->data[0];
125  for (; buf_size > 5; buf_size -= 6) {
126  *o++ = (ff_reverse[buf[2] & 0xf0] << 28) |
127  (ff_reverse[buf[1]] << 20) |
128  (ff_reverse[buf[0]] << 12);
129  *o++ = (ff_reverse[buf[5] & 0xf0] << 28) |
130  (ff_reverse[buf[4]] << 20) |
131  (ff_reverse[buf[3]] << 12);
132  buf += 6;
133  }
134  } else {
135  uint16_t *o = (uint16_t *)frame->data[0];
136  for (; buf_size > 4; buf_size -= 5) {
137  *o++ = (ff_reverse[buf[1]] << 8) |
138  ff_reverse[buf[0]];
139  *o++ = (ff_reverse[buf[4] & 0xf0] << 12) |
140  (ff_reverse[buf[3]] << 4) |
141  (ff_reverse[buf[2]] >> 4);
142  buf += 5;
143  }
144  }
145 
146  avctx->sample_rate = 48000;
147 
148  *got_frame_ptr = 1;
149 
150  return avpkt->size;
151 }
152 
154  .name = "s302m",
155  .long_name = NULL_IF_CONFIG_SMALL("SMPTE 302M"),
156  .type = AVMEDIA_TYPE_AUDIO,
157  .id = AV_CODEC_ID_S302M,
158  .decode = s302m_decode_frame,
159  .capabilities = CODEC_CAP_DR1,
160 };
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
This structure describes decoded (raw) audio or video data.
Definition: frame.h:163
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
static int s302m_parse_frame_header(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
Definition: s302m.c:31
int size
Definition: avcodec.h:1161
#define AV_CH_LAYOUT_STEREO
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:2725
AVCodec.
Definition: avcodec.h:3173
if()
Definition: avfilter.c:975
uint8_t bits
Definition: crc.c:295
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:1991
uint8_t
#define AV_RB32
Definition: intreadwrite.h:130
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:787
static AVFrame * frame
uint8_t * data
Definition: avcodec.h:1160
signed 32 bits
Definition: samplefmt.h:63
#define av_log(a,...)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:175
AVCodec ff_s302m_decoder
Definition: s302m.c:153
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:180
#define AV_CH_LAYOUT_QUAD
const char * name
Name of the codec implementation.
Definition: avcodec.h:3180
Libavcodec external API header.
uint64_t channel_layout
Audio channel layout.
Definition: avcodec.h:2044
int bit_rate
the average bitrate
Definition: avcodec.h:1303
#define AV_CH_LAYOUT_STEREO_DOWNMIX
ret
Definition: avfilter.c:974
#define AV_CH_LAYOUT_5POINT1_BACK
int frame_size
Definition: mxfenc.c:1618
int sample_rate
samples per second
Definition: avcodec.h:1983
main external API structure.
Definition: avcodec.h:1239
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: utils.c:1032
void * buf
Definition: avisynth_c.h:595
#define AES3_HEADER_LEN
Definition: s302m.c:29
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:174
common internal api header.
signed 16 bits
Definition: samplefmt.h:62
int channels
number of audio channels
Definition: avcodec.h:1984
static int s302m_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
Definition: s302m.c:86
const uint8_t ff_reverse[256]
Definition: mathtables.c:74
This structure stores compressed data.
Definition: avcodec.h:1137
int nb_samples
number of audio samples (per channel) described by this frame
Definition: frame.h:217
for(j=16;j >0;--j)