FFmpeg
aac_adtstoasc_bsf.c
Go to the documentation of this file.
1 /*
2  * MPEG-2/4 AAC ADTS to MPEG-4 Audio Specific Configuration bitstream filter
3  * Copyright (c) 2009 Alex Converse <alex.converse@gmail.com>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include "adts_header.h"
23 #include "adts_parser.h"
24 #include "bsf.h"
25 #include "bsf_internal.h"
26 #include "put_bits.h"
27 #include "get_bits.h"
28 #include "mpeg4audio.h"
29 
30 typedef struct AACBSFContext {
33 
34 /**
35  * This filter creates an MPEG-4 AudioSpecificConfig from an MPEG-2/4
36  * ADTS header and removes the ADTS header.
37  */
39 {
40  AACBSFContext *ctx = bsfc->priv_data;
41 
42  GetBitContext gb;
43  PutBitContext pb;
45  int ret;
46 
47  ret = ff_bsf_get_packet_ref(bsfc, pkt);
48  if (ret < 0)
49  return ret;
50 
51  if (bsfc->par_in->extradata && pkt->size >= 2 && (AV_RB16(pkt->data) >> 4) != 0xfff)
52  return 0;
53 
55  goto packet_too_small;
56 
58 
59  if (ff_adts_header_parse(&gb, &hdr) < 0) {
60  av_log(bsfc, AV_LOG_ERROR, "Error parsing ADTS frame header!\n");
62  goto fail;
63  }
64 
65  if (!hdr.crc_absent && hdr.num_aac_frames > 1) {
67  "Multiple RDBs per frame with CRC");
69  goto fail;
70  }
71 
73  if (pkt->size <= 0)
74  goto packet_too_small;
76 
77  if (!ctx->first_frame_done) {
78  int pce_size = 0;
79  uint8_t pce_data[MAX_PCE_SIZE];
80  uint8_t *extradata;
81 
82  if (!hdr.chan_config) {
83  init_get_bits(&gb, pkt->data, pkt->size * 8);
84  if (get_bits(&gb, 3) != 5) {
86  "PCE-based channel configuration "
87  "without PCE as first syntax "
88  "element");
90  goto fail;
91  }
92  init_put_bits(&pb, pce_data, MAX_PCE_SIZE);
93  pce_size = ff_copy_pce_data(&pb, &gb) / 8;
94  flush_put_bits(&pb);
95  pkt->size -= get_bits_count(&gb)/8;
96  pkt->data += get_bits_count(&gb)/8;
97  }
98 
100  2 + pce_size);
101  if (!extradata) {
102  ret = AVERROR(ENOMEM);
103  goto fail;
104  }
105 
106  init_put_bits(&pb, extradata, 2 + pce_size);
107  put_bits(&pb, 5, hdr.object_type);
108  put_bits(&pb, 4, hdr.sampling_index);
109  put_bits(&pb, 4, hdr.chan_config);
110  put_bits(&pb, 1, 0); //frame length - 1024 samples
111  put_bits(&pb, 1, 0); //does not depend on core coder
112  put_bits(&pb, 1, 0); //is not extension
113  flush_put_bits(&pb);
114  if (pce_size) {
115  memcpy(extradata + 2, pce_data, pce_size);
116  }
117 
118  ctx->first_frame_done = 1;
119  }
120 
121  return 0;
122 
123 packet_too_small:
124  av_log(bsfc, AV_LOG_ERROR, "Input packet too small\n");
126 fail:
128  return ret;
129 }
130 
132 {
133  /* Validate the extradata if the stream is already MPEG-4 AudioSpecificConfig */
134  if (ctx->par_in->extradata) {
135  MPEG4AudioConfig mp4ac;
136  int ret = avpriv_mpeg4audio_get_config2(&mp4ac, ctx->par_in->extradata,
137  ctx->par_in->extradata_size, 1, ctx);
138  if (ret < 0) {
139  av_log(ctx, AV_LOG_ERROR, "Error parsing AudioSpecificConfig extradata!\n");
140  return ret;
141  }
142  }
143 
144  return 0;
145 }
146 
147 static const enum AVCodecID codec_ids[] = {
149 };
150 
152  .p.name = "aac_adtstoasc",
153  .p.codec_ids = codec_ids,
154  .priv_data_size = sizeof(AACBSFContext),
157 };
av_packet_unref
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:422
AVBSFContext::par_in
AVCodecParameters * par_in
Parameters of the input stream.
Definition: bsf.h:90
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: codec_par.h:75
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
bsf_internal.h
AVBitStreamFilter::name
const char * name
Definition: bsf.h:112
init_put_bits
static void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
Initialize the PutBitContext s.
Definition: put_bits.h:62
get_bits_count
static int get_bits_count(const GetBitContext *s)
Definition: get_bits.h:219
AV_AAC_ADTS_HEADER_SIZE
#define AV_AAC_ADTS_HEADER_SIZE
Definition: adts_parser.h:25
put_bits
static void put_bits(Jpeg2000EncoderContext *s, int val, int n)
put n times val bit
Definition: j2kenc.c:221
AVPacket::data
uint8_t * data
Definition: packet.h:374
ff_aac_adtstoasc_bsf
const FFBitStreamFilter ff_aac_adtstoasc_bsf
Definition: aac_adtstoasc_bsf.c:151
filter
filter_frame For filters that do not use the this method is called when a frame is pushed to the filter s input It can be called at any time except in a reentrant way If the input frame is enough to produce then the filter should push the output frames on the output link immediately As an exception to the previous rule if the input frame is enough to produce several output frames then the filter needs output only at least one per link The additional frames can be left buffered in the filter
Definition: filter_design.txt:228
MAX_PCE_SIZE
#define MAX_PCE_SIZE
Maximum size of a PCE including the 3-bit ID_PCE.
Definition: mpeg4audio.h:120
init_get_bits
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:649
AVBSFContext
The bitstream filter state.
Definition: bsf.h:68
aac_adtstoasc_init
static int aac_adtstoasc_init(AVBSFContext *ctx)
Definition: aac_adtstoasc_bsf.c:131
init
static int init
Definition: av_tx.c:47
MPEG4AudioConfig
Definition: mpeg4audio.h:32
get_bits
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:379
mpeg4audio.h
bsf.h
fail
#define fail()
Definition: checkasm.h:131
ff_adts_header_parse
int ff_adts_header_parse(GetBitContext *gbc, AACADTSHeaderInfo *hdr)
Parse the ADTS frame header to the end of the variable header, which is the first 54 bits.
Definition: adts_header.c:30
GetBitContext
Definition: get_bits.h:61
AACADTSHeaderInfo::chan_config
uint8_t chan_config
Definition: adts_header.h:35
pkt
AVPacket * pkt
Definition: movenc.c:59
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
avpriv_mpeg4audio_get_config2
int avpriv_mpeg4audio_get_config2(MPEG4AudioConfig *c, const uint8_t *buf, int size, int sync_extension, void *logctx)
Parse MPEG-4 systems extradata from a raw buffer to retrieve audio configuration.
Definition: mpeg4audio.c:165
aac_adtstoasc_filter
static int aac_adtstoasc_filter(AVBSFContext *bsfc, AVPacket *pkt)
This filter creates an MPEG-4 AudioSpecificConfig from an MPEG-2/4 ADTS header and removes the ADTS h...
Definition: aac_adtstoasc_bsf.c:38
ctx
AVFormatContext * ctx
Definition: movenc.c:48
get_bits.h
PutBitContext
Definition: put_bits.h:50
AACBSFContext
Definition: aac_adtstoasc_bsf.c:30
AACADTSHeaderInfo::num_aac_frames
uint8_t num_aac_frames
Definition: adts_header.h:36
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:64
FFBitStreamFilter
Definition: bsf_internal.h:27
AACADTSHeaderInfo::sampling_index
uint8_t sampling_index
Definition: adts_header.h:34
ff_copy_pce_data
static int ff_copy_pce_data(PutBitContext *pb, GetBitContext *gb)
Definition: mpeg4audio.h:132
AVCodecID
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: codec_id.h:47
AV_CODEC_ID_AAC
@ AV_CODEC_ID_AAC
Definition: codec_id.h:429
FFBitStreamFilter::p
AVBitStreamFilter p
The public AVBitStreamFilter.
Definition: bsf_internal.h:31
AVPacket::size
int size
Definition: packet.h:375
avpriv_report_missing_feature
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
AACADTSHeaderInfo::object_type
uint8_t object_type
Definition: adts_header.h:33
AACBSFContext::first_frame_done
int first_frame_done
Definition: aac_adtstoasc_bsf.c:31
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: codec_id.h:48
AVBSFContext::priv_data
void * priv_data
Opaque filter-specific private data.
Definition: bsf.h:83
ret
ret
Definition: filter_design.txt:187
adts_parser.h
AACADTSHeaderInfo::crc_absent
uint8_t crc_absent
Definition: adts_header.h:32
av_packet_new_side_data
uint8_t * av_packet_new_side_data(AVPacket *pkt, enum AVPacketSideDataType type, size_t size)
Allocate new information of a packet.
Definition: avpacket.c:230
AV_PKT_DATA_NEW_EXTRADATA
@ AV_PKT_DATA_NEW_EXTRADATA
The AV_PKT_DATA_NEW_EXTRADATA is used to notify the codec or the format that the extradata buffer was...
Definition: packet.h:56
codec_ids
static enum AVCodecID codec_ids[]
Definition: aac_adtstoasc_bsf.c:147
adts_header.h
flush_put_bits
static void flush_put_bits(PutBitContext *s)
Pad the end of the output stream with zeros.
Definition: put_bits.h:143
AVPacket
This structure stores compressed data.
Definition: packet.h:351
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
ff_bsf_get_packet_ref
int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt)
Called by bitstream filters to get packet for filtering.
Definition: bsf.c:257
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
put_bits.h
AACADTSHeaderInfo
Definition: adts_header.h:28
AV_RB16
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
Definition: bytestream.h:98