FFmpeg
Loading...
Searching...
No Matches
loasdec.c
Go to the documentation of this file.
1/*
2 * LOAS AudioSyncStream demuxer
3 * Copyright (c) 2008 Michael Niedermayer <michaelni@gmx.at>
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
23#include "libavutil/internal.h"
24#include "avformat.h"
25#include "demux.h"
26#include "internal.h"
27#include "rawdec.h"
28
29#define LOAS_SYNC_WORD 0x2b7
30
31static int loas_probe(const AVProbeData *p)
32{
33 int max_frames = 0, first_frames = 0;
34 int fsize, frames;
35 const uint8_t *buf0 = p->buf;
36 const uint8_t *buf2;
37 const uint8_t *buf;
38 const uint8_t *end = buf0 + p->buf_size - 3;
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_RB24(buf2);
46 if ((header >> 13) != LOAS_SYNC_WORD)
47 break;
48 fsize = (header & 0x1FFF) + 3;
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
59 if (first_frames >= 3)
60 return AVPROBE_SCORE_EXTENSION + 1;
61 else if (max_frames > 100)
63 else if (max_frames >= 3)
64 return AVPROBE_SCORE_EXTENSION / 2;
65 else
66 return 0;
67}
68
70{
71 AVStream *st;
72
74 if (!st)
75 return AVERROR(ENOMEM);
76
80
81 //LCM of all possible AAC sample rates
82 avpriv_set_pts_info(st, 64, 1, 28224000);
83
84 return 0;
85}
86
88 .p.name = "loas",
89 .p.long_name = NULL_IF_CONFIG_SMALL("LOAS AudioSyncStream"),
90 .p.flags = AVFMT_GENERIC_INDEX,
91 .p.priv_class = &ff_raw_demuxer_class,
92 .read_probe = loas_probe,
93 .read_header = loas_read_header,
94 .read_packet = ff_raw_read_partial_packet,
95 .raw_codec_id = AV_CODEC_ID_AAC_LATM,
96 .priv_data_size = sizeof(FFRawDemuxerContext),
97};
#define LOAS_SYNC_WORD
11 bits LOAS sync word
Definition aacdec_latm.h:35
const FFInputFormat ff_loas_demuxer
Definition loasdec.c:87
static int64_t fsize(FILE *f)
Definition audiomatch.c:29
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition avformat.c:834
Main libavformat public API header.
#define AVPROBE_SCORE_EXTENSION
score for file extension
Definition avformat.h:481
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition avformat.h:499
@ AVSTREAM_PARSE_FULL_RAW
full parsing and repack with timestamp and position generation by parser for raw this assumes that ea...
Definition avformat.h:615
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
@ AV_CODEC_ID_AAC_LATM
Definition codec_id.h:502
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
#define AVERROR(e)
Definition error.h:45
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
#define AV_RB24(x)
static av_always_inline FFStream * ffstream(AVStream *st)
Definition internal.h:365
const AVClass ff_raw_demuxer_class
Definition rawdec.c:141
int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
Definition rawdec.c:33
common internal API header
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static int loas_probe(const AVProbeData *p)
Definition loasdec.c:31
static int loas_read_header(AVFormatContext *s)
Definition loasdec.c:69
#define FFMIN(a, b)
Definition macros.h:49
#define FFMAX(a, b)
Definition macros.h:47
static const uint8_t header[24]
Definition sdr2.c:68
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
Format I/O context.
Definition avformat.h:1333
This structure contains the data a format has to probe a file.
Definition avformat.h:471
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
enum AVStreamParseType need_parsing
Definition internal.h:321
static int frames
Definition movenc.c:67