FFmpeg
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 
30 typedef struct MpegAudioParseContext {
33  uint32_t header;
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 
143  .priv_data_size = sizeof(MpegAudioParseContext),
146 };
ID3v1_TAG_SIZE
#define ID3v1_TAG_SIZE
Definition: id3v1.h:27
AVCodecContext::sample_rate
int sample_rate
samples per second
Definition: avcodec.h:1024
ff_parse_close
av_cold void ff_parse_close(AVCodecParserContext *s)
Definition: parser.c:298
AVCodecParserContext::duration
int duration
Duration of the current frame.
Definition: avcodec.h:2689
parser_internal.h
apetag.h
mpegaudiodecheader.h
MpegAudioParseContext
Definition: mpegaudio_parser.c:30
id3v1.h
ParseContext::state
uint32_t state
contains the last few bytes in MSB order
Definition: parser.h:33
APE_TAG_PREAMBLE
#define APE_TAG_PREAMBLE
Definition: apetag.h:28
AV_CODEC_ID_MP3ADU
@ AV_CODEC_ID_MP3ADU
Definition: codec_id.h:472
close
static av_cold void close(AVCodecParserContext *s)
Definition: apv_parser.c:136
ff_mpa_decode_header
int ff_mpa_decode_header(uint32_t head, int *sample_rate, int *channels, int *frame_size, int *bit_rate, enum AVCodecID *codec_id)
Definition: mpegaudiodecheader.c:120
ParseContext
Definition: parser.h:28
AVCodecContext::ch_layout
AVChannelLayout ch_layout
Audio channel layout.
Definition: avcodec.h:1039
AV_CODEC_ID_MP3
@ AV_CODEC_ID_MP3
preferred ID for decoding MPEG audio layer 1, 2 or 3
Definition: codec_id.h:460
s
#define s(width, name)
Definition: cbs_vp9.c:198
frame_size
int frame_size
Definition: mxfenc.c:2487
AV_CODEC_ID_MP2
@ AV_CODEC_ID_MP2
Definition: codec_id.h:459
channels
channels
Definition: aptx.h:31
codec_id
enum AVCodecID codec_id
Definition: vaapi_decode.c:410
AVCodecContext::codec_id
enum AVCodecID codec_id
Definition: avcodec.h:441
NULL
#define NULL
Definition: coverity.c:32
state
static struct @541 state
ff_mpegaudio_parser
const FFCodecParser ff_mpegaudio_parser
Definition: mpegaudio_parser.c:140
AVCodecContext::bit_rate
int64_t bit_rate
the average bitrate
Definition: avcodec.h:481
flush
void(* flush)(AVBSFContext *ctx)
Definition: dts2pts.c:370
AVCodecParserContext::flags
int flags
Definition: avcodec.h:2608
MpegAudioParseContext::pc
ParseContext pc
Definition: mpegaudio_parser.c:31
parse
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:46
inc
static int inc(int num, int period)
Definition: perlin.c:34
AVCodecID
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: codec_id.h:49
MpegAudioParseContext::header_count
int header_count
Definition: mpegaudio_parser.c:34
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.
MpegAudioParseContext::no_bitrate
int no_bitrate
Definition: mpegaudio_parser.c:35
ff_combine_frame
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:211
FFCodecParser
Definition: parser_internal.h:29
av_channel_layout_default
void av_channel_layout_default(AVChannelLayout *ch_layout, int nb_channels)
Get the default channel layout for a given number of channels.
Definition: channel_layout.c:839
PARSER_FLAG_COMPLETE_FRAMES
#define PARSER_FLAG_COMPLETE_FRAMES
Definition: avcodec.h:2609
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: codec_id.h:50
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
MpegAudioParseContext::frame_size
int frame_size
Definition: mpegaudio_parser.c:32
MpegAudioParseContext::header
uint32_t header
Definition: mpegaudio_parser.c:33
common.h
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
parser.h
PARSER_CODEC_LIST
#define PARSER_CODEC_LIST(...)
Definition: parser_internal.h:76
AVCodecParserContext
Definition: avcodec.h:2575
ret
ret
Definition: filter_design.txt:187
mpegaudio_parse
static int mpegaudio_parse(AVCodecParserContext *s1, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition: mpegaudio_parser.c:44
AVCodecContext
main external API structure.
Definition: avcodec.h:431
av_channel_layout_uninit
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
Definition: channel_layout.c:442
APE_TAG_FOOTER_BYTES
#define APE_TAG_FOOTER_BYTES
Definition: apetag.h:30
SAME_HEADER_MASK
#define SAME_HEADER_MASK
Definition: mpegaudio_parser.c:41
END_NOT_FOUND
#define END_NOT_FOUND
Definition: parser.h:40
AVCodecParserContext::priv_data
void * priv_data
Definition: avcodec.h:2576
AV_CODEC_ID_MP1
@ AV_CODEC_ID_MP1
Definition: codec_id.h:501