FFmpeg
Loading...
Searching...
No Matches
mpegaudio_parser.c
Go to the documentation of this file.
1/*
2 * MPEG Audio parser
3 * Copyright (c) 2003 Fabrice Bellard
4 * Copyright (c) 2003 Michael Niedermayer
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 "parser.h"
24#include "mpegaudiodecheader.h"
25#include "parser_internal.h"
26#include "libavutil/common.h"
27#include "libavformat/apetag.h" // for APE tag.
28#include "libavformat/id3v1.h" // for ID3v1_TAG_SIZE
29
37
38#define MPA_HEADER_SIZE 4
39
40/* header + layer + freq + lsf/mpeg25 */
41#define SAME_HEADER_MASK \
42 (0xffe00000 | (3 << 17) | (3 << 10) | (3 << 19))
43
45 AVCodecContext *avctx,
46 const uint8_t **poutbuf, int *poutbuf_size,
47 const uint8_t *buf, int buf_size)
48{
50 ParseContext *pc = &s->pc;
51 uint32_t state= pc->state;
52 int i;
53 int next= END_NOT_FOUND;
54 int flush = !buf_size;
55
56 for(i=0; i<buf_size; ){
57 if(s->frame_size){
58 int inc= FFMIN(buf_size - i, s->frame_size);
59 i += inc;
60 s->frame_size -= inc;
61 state = 0;
62
63 if(!s->frame_size){
64 next= i;
65 break;
66 }
67 }else{
68 while(i<buf_size){
69 int ret, sr, channels, bit_rate, frame_size;
70 enum AVCodecID codec_id = avctx->codec_id;
71
72 state= (state<<8) + buf[i++];
73
74 ret = ff_mpa_decode_header(state, &sr, &channels, &frame_size, &bit_rate, &codec_id);
75 if (ret < 4) {
76 if (i > 4)
77 s->header_count = -2;
78 } else {
79 int header_threshold = avctx->codec_id != AV_CODEC_ID_NONE && avctx->codec_id != codec_id;
80 if((state&SAME_HEADER_MASK) != (s->header&SAME_HEADER_MASK) && s->header)
81 s->header_count= -3;
82 s->header= state;
83 s->header_count++;
84 s->frame_size = ret-4;
85
86 if (s->header_count > header_threshold) {
87 avctx->sample_rate= sr;
90 s1->duration = frame_size;
91 avctx->codec_id = codec_id;
92 if (s->no_bitrate || !avctx->bit_rate) {
93 s->no_bitrate = 1;
94 avctx->bit_rate += (bit_rate - avctx->bit_rate) / (s->header_count - header_threshold);
95 }
96 }
97
99 s->frame_size = 0;
100 next = buf_size;
101 } else if (codec_id == AV_CODEC_ID_MP3ADU) {
103 "MP3ADU full parser");
104 *poutbuf = NULL;
105 *poutbuf_size = 0;
106 return buf_size; /* parsers must not return error codes */
107 }
108
109 break;
110 }
111 }
112 }
113 }
114
115 pc->state= state;
116 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
117 *poutbuf = NULL;
118 *poutbuf_size = 0;
119 return buf_size;
120 }
121
122 if (flush && buf_size >= ID3v1_TAG_SIZE && memcmp(buf, "TAG", 3) == 0) {
123 *poutbuf = NULL;
124 *poutbuf_size = 0;
125 return next;
126 }
127
128 if (flush && buf_size >= APE_TAG_FOOTER_BYTES && memcmp(buf, APE_TAG_PREAMBLE, 8) == 0) {
129 *poutbuf = NULL;
130 *poutbuf_size = 0;
131 return next;
132 }
133
134 *poutbuf = buf;
135 *poutbuf_size = buf_size;
136 return next;
137}
138
139
#define APE_TAG_PREAMBLE
Definition apetag.h:28
#define APE_TAG_FOOTER_BYTES
Definition apetag.h:30
channels
Definition aptx.h:31
static int parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition apv_parser.c:92
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
#define PARSER_FLAG_COMPLETE_FRAMES
Definition avcodec.h:2651
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
common internal and external API header
#define NULL
Definition coverity.c:32
void(* flush)(AVBSFContext *ctx)
Definition dts2pts.c:610
static struct @346255127015250356166251341105367306144006377143 state
static const uint8_t frame_size[4]
Definition g723_1.h:222
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition codec_id.h:47
@ AV_CODEC_ID_NONE
Definition codec_id.h:48
@ AV_CODEC_ID_MP1
Definition codec_id.h:495
@ AV_CODEC_ID_MP2
Definition codec_id.h:453
@ AV_CODEC_ID_MP3ADU
Definition codec_id.h:466
@ AV_CODEC_ID_MP3
preferred ID for decoding MPEG audio layer 1, 2 or 3
Definition codec_id.h:454
void av_channel_layout_default(AVChannelLayout *ch_layout, int nb_channels)
Get the default channel layout for a given number of channels.
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
#define ID3v1_TAG_SIZE
Definition id3v1.h:27
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
#define FFMIN(a, b)
Definition macros.h:49
const FFCodecParser ff_mpegaudio_parser
static int mpegaudio_parse(AVCodecParserContext *s1, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
#define SAME_HEADER_MASK
int ff_mpa_decode_header(uint32_t head, int *sample_rate, int *channels, int *frame_size, int *bit_rate, enum AVCodecID *codec_id)
MPEG Audio header decoder.
av_cold void ff_parse_close(AVCodecParserContext *s)
Definition parser.c:300
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
Combine the (truncated) bitstream to a complete frame.
Definition parser.c:213
#define END_NOT_FOUND
Definition parser.h:40
#define PARSER_CODEC_LIST(...)
static int inc(int num, int period)
Definition perlin.c:34
main external API structure.
Definition avcodec.h:443
AVChannelLayout ch_layout
Audio channel layout.
Definition avcodec.h:1055
int64_t bit_rate
the average bitrate
Definition avcodec.h:493
int sample_rate
samples per second
Definition avcodec.h:1040
enum AVCodecID codec_id
Definition avcodec.h:453
int duration
Duration of the current frame.
Definition avcodec.h:2731
uint32_t state
contains the last few bytes in MSB order
Definition parser.h:33
enum AVCodecID codec_id