libavformat/aacdec.c
Go to the documentation of this file.
1 /*
2  * raw ADTS AAC demuxer
3  * Copyright (c) 2008 Michael Niedermayer <michaelni@gmx.at>
4  * Copyright (c) 2009 Robert Swain ( rob opendot cl )
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 "avformat.h"
25 #include "internal.h"
26 #include "rawdec.h"
27 #include "id3v1.h"
28 
29 
31 {
32  int max_frames = 0, first_frames = 0;
33  int fsize, frames;
34  const uint8_t *buf0 = p->buf;
35  const uint8_t *buf2;
36  const uint8_t *buf;
37  const uint8_t *end = buf0 + p->buf_size - 7;
38 
39  buf = buf0;
40 
41  for(; buf < end; buf= buf2+1) {
42  buf2 = buf;
43 
44  for(frames = 0; buf2 < end; frames++) {
45  uint32_t header = AV_RB16(buf2);
46  if((header&0xFFF6) != 0xFFF0)
47  break;
48  fsize = (AV_RB32(buf2 + 3) >> 13) & 0x1FFF;
49  if(fsize < 7)
50  break;
51  fsize = FFMIN(fsize, end - buf2);
52  buf2 += fsize;
53  }
54  max_frames = FFMAX(max_frames, frames);
55  if(buf == buf0)
56  first_frames= frames;
57  }
58  if (first_frames>=3) return AVPROBE_SCORE_MAX/2+1;
59  else if(max_frames>500)return AVPROBE_SCORE_MAX/2;
60  else if(max_frames>=3) return AVPROBE_SCORE_MAX/4;
61  else if(max_frames>=1) return 1;
62  else return 0;
63 }
64 
66 {
67  AVStream *st;
68 
69  st = avformat_new_stream(s, NULL);
70  if (!st)
71  return AVERROR(ENOMEM);
72 
76 
77  ff_id3v1_read(s);
78 
79  //LCM of all possible ADTS sample rates
80  avpriv_set_pts_info(st, 64, 1, 28224000);
81 
82  return 0;
83 }
84 
86  .name = "aac",
87  .long_name = NULL_IF_CONFIG_SMALL("raw ADTS AAC (Advanced Audio Coding)"),
88  .read_probe = adts_aac_probe,
89  .read_header = adts_aac_read_header,
90  .read_packet = ff_raw_read_partial_packet,
91  .flags = AVFMT_GENERIC_INDEX,
92  .extensions = "aac",
93  .raw_codec_id = AV_CODEC_ID_AAC,
94 };
const char * s
Definition: avisynth_c.h:668
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
void ff_id3v1_read(AVFormatContext *s)
Read an ID3v1 tag.
Definition: id3v1.c:228
Format I/O context.
Definition: avformat.h:944
uint8_t
static int adts_aac_read_header(AVFormatContext *s)
#define AV_RB32
enum AVStreamParseType need_parsing
Definition: avformat.h:811
end end
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
full parsing and repack with timestamp and position generation by parser for raw this assumes that ea...
Definition: avformat.h:586
#define AV_RB16
int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
AVInputFormat ff_aac_demuxer
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
#define FFMAX(a, b)
Definition: common.h:56
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:662
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:337
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:336
#define FFMIN(a, b)
Definition: common.h:58
if it could not because there are no more frames
Stream structure.
Definition: avformat.h:643
NULL
Definition: eval.c:55
enum AVMediaType codec_type
enum AVCodecID codec_id
void * buf
Definition: avisynth_c.h:594
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:353
This structure contains the data a format has to probe a file.
Definition: avformat.h:334
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer 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.Buffer references ownership and permissions
int raw_codec_id
Raw demuxers store their codec ID here.
Definition: avformat.h:500
#define AVPROBE_SCORE_MAX
maximum score, half of that is used for file-extension-based detection
Definition: avformat.h:340
static int adts_aac_probe(AVProbeData *p)
Main libavformat public API header.
struct AVInputFormat * iformat
Can only be iformat or oformat, not both at the same time.
Definition: avformat.h:957
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:461