FFmpeg
opus_parser.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-2014 Mozilla Corporation
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 /**
22  * @file
23  * Opus parser
24  *
25  * Determines the duration for each packet.
26  */
27 
28 #include "libavutil/mem.h"
29 #include "avcodec.h"
30 #include "bytestream.h"
31 #include "opus.h"
32 #include "opus_parse.h"
33 #include "parser.h"
34 
35 typedef struct OpusParserContext {
42 
43 static const uint8_t *parse_opus_ts_header(const uint8_t *start, int *payload_len, int buf_len)
44 {
45  const uint8_t *buf = start + 1;
46  int start_trim_flag, end_trim_flag, control_extension_flag, control_extension_length;
47  uint8_t flags;
48  uint64_t payload_len_tmp;
49 
50  GetByteContext gb;
51  bytestream2_init(&gb, buf, buf_len);
52 
53  flags = bytestream2_get_byte(&gb);
54  start_trim_flag = (flags >> 4) & 1;
55  end_trim_flag = (flags >> 3) & 1;
56  control_extension_flag = (flags >> 2) & 1;
57 
58  payload_len_tmp = *payload_len = 0;
59  while (bytestream2_peek_byte(&gb) == 0xff)
60  payload_len_tmp += bytestream2_get_byte(&gb);
61 
62  payload_len_tmp += bytestream2_get_byte(&gb);
63 
64  if (start_trim_flag)
65  bytestream2_skip(&gb, 2);
66  if (end_trim_flag)
67  bytestream2_skip(&gb, 2);
68  if (control_extension_flag) {
69  control_extension_length = bytestream2_get_byte(&gb);
70  bytestream2_skip(&gb, control_extension_length);
71  }
72 
73  if (bytestream2_tell(&gb) + payload_len_tmp > buf_len)
74  return NULL;
75 
76  *payload_len = payload_len_tmp;
77 
78  return buf + bytestream2_tell(&gb);
79 }
80 
81 /**
82  * Find the end of the current frame in the bitstream.
83  * @return the position of the first byte of the next frame, or -1
84  */
86  const uint8_t *buf, int buf_size, int *header_len)
87 {
89  ParseContext *pc = &s->pc;
90  int ret, start_found, i = 0, payload_len = 0;
91  const uint8_t *payload;
92  uint32_t state;
93  uint16_t hdr;
94  *header_len = 0;
95 
96  if (!buf_size)
97  return 0;
98 
99  start_found = pc->frame_start_found;
100  state = pc->state;
101  payload = buf;
102 
103  /* Check if we're using Opus in MPEG-TS framing */
104  if (!s->ts_framing && buf_size > 2) {
105  hdr = AV_RB16(buf);
106  if ((hdr & OPUS_TS_MASK) == OPUS_TS_HEADER)
107  s->ts_framing = 1;
108  }
109 
110  if (s->ts_framing && !start_found) {
111  for (i = 0; i < buf_size-2; i++) {
112  state = (state << 8) | payload[i];
113  if ((state & OPUS_TS_MASK) == OPUS_TS_HEADER) {
114  payload = parse_opus_ts_header(payload, &payload_len, buf_size - i);
115  if (!payload) {
116  av_log(avctx, AV_LOG_ERROR, "Error parsing Ogg TS header.\n");
117  return AVERROR_INVALIDDATA;
118  }
119  *header_len = payload - buf;
120  start_found = 1;
121  break;
122  }
123  }
124  }
125 
126  if (!s->ts_framing)
127  payload_len = buf_size;
128 
129  if (avctx->extradata && !s->extradata_parsed) {
130  ret = ff_opus_parse_extradata(avctx, &s->ctx);
131  if (ret < 0) {
132  av_log(avctx, AV_LOG_ERROR, "Error parsing Ogg extradata.\n");
133  return AVERROR_INVALIDDATA;
134  }
135  av_freep(&s->ctx.channel_maps);
136  s->extradata_parsed = 1;
137  }
138 
139  if (payload_len <= buf_size && (!s->ts_framing || start_found)) {
140  ret = ff_opus_parse_packet(&s->pkt, payload, payload_len, s->ctx.nb_streams > 1);
141  if (ret < 0) {
142  av_log(avctx, AV_LOG_ERROR, "Error parsing Opus packet header.\n");
143  pc->frame_start_found = 0;
144  return AVERROR_INVALIDDATA;
145  }
146 
147  ctx->duration = s->pkt.frame_count * s->pkt.frame_duration;
148  }
149 
150  if (s->ts_framing) {
151  if (start_found) {
152  if (payload_len + *header_len <= buf_size) {
153  pc->frame_start_found = 0;
154  pc->state = -1;
155  return payload_len + *header_len;
156  }
157  }
158 
159  pc->frame_start_found = start_found;
160  pc->state = state;
161  return END_NOT_FOUND;
162  }
163 
164  return buf_size;
165 }
166 
168  const uint8_t **poutbuf, int *poutbuf_size,
169  const uint8_t *buf, int buf_size)
170 {
172  ParseContext *pc = &s->pc;
173  int next, header_len;
174 
175  next = opus_find_frame_end(ctx, avctx, buf, buf_size, &header_len);
176 
177  if (s->ts_framing && next != AVERROR_INVALIDDATA &&
178  ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
179  *poutbuf = NULL;
180  *poutbuf_size = 0;
181  return buf_size;
182  }
183 
184  if (next == AVERROR_INVALIDDATA){
185  *poutbuf = NULL;
186  *poutbuf_size = 0;
187  return buf_size;
188  }
189 
190  *poutbuf = buf + header_len;
191  *poutbuf_size = buf_size - header_len;
192  return next;
193 }
194 
197  .priv_data_size = sizeof(OpusParserContext),
198  .parser_parse = opus_parse,
199  .parser_close = ff_parse_close
200 };
OpusParserContext::extradata_parsed
int extradata_parsed
Definition: opus_parser.c:39
OPUS_TS_MASK
#define OPUS_TS_MASK
Definition: opus.h:33
GetByteContext
Definition: bytestream.h:33
ff_parse_close
void ff_parse_close(AVCodecParserContext *s)
Definition: parser.c:289
opus_find_frame_end
static int opus_find_frame_end(AVCodecParserContext *ctx, AVCodecContext *avctx, const uint8_t *buf, int buf_size, int *header_len)
Find the end of the current frame in the bitstream.
Definition: opus_parser.c:85
opus.h
OpusParserContext
Definition: opus_parser.c:35
OpusParserContext::ts_framing
int ts_framing
Definition: opus_parser.c:40
ParseContext::state
uint32_t state
contains the last few bytes in MSB order
Definition: parser.h:33
opus_parse.h
bytestream2_skip
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition: bytestream.h:168
ParseContext
Definition: parser.h:28
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
s
#define s(width, name)
Definition: cbs_vp9.c:198
ctx
AVFormatContext * ctx
Definition: movenc.c:49
parse_opus_ts_header
static const uint8_t * parse_opus_ts_header(const uint8_t *start, int *payload_len, int buf_len)
Definition: opus_parser.c:43
OpusParserContext::ctx
OpusParseContext ctx
Definition: opus_parser.c:37
OpusParserContext::pc
ParseContext pc
Definition: opus_parser.c:36
NULL
#define NULL
Definition: coverity.c:32
OPUS_TS_HEADER
#define OPUS_TS_HEADER
Definition: opus.h:32
opus_parse
static int opus_parse(AVCodecParserContext *ctx, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition: opus_parser.c:167
ParseContext::frame_start_found
int frame_start_found
Definition: parser.h:34
OpusParseContext
Definition: opus_parse.h:63
OpusParserContext::pkt
OpusPacket pkt
Definition: opus_parser.c:38
bytestream2_tell
static av_always_inline int bytestream2_tell(GetByteContext *g)
Definition: bytestream.h:192
AVCodecParser::codec_ids
int codec_ids[7]
Definition: avcodec.h:2867
AV_CODEC_ID_OPUS
@ AV_CODEC_ID_OPUS
Definition: codec_id.h:500
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:203
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
AVCodecContext::extradata
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:523
parser.h
avcodec.h
AVCodecParserContext
Definition: avcodec.h:2707
ret
ret
Definition: filter_design.txt:187
state
static struct @399 state
AVCodecContext
main external API structure.
Definition: avcodec.h:445
OpusPacket
Definition: opus_parse.h:31
AVFormatContext::duration
int64_t duration
Duration of the stream, in AV_TIME_BASE fractional seconds.
Definition: avformat.h:1390
mem.h
END_NOT_FOUND
#define END_NOT_FOUND
Definition: parser.h:40
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:34
ff_opus_parse_extradata
av_cold int ff_opus_parse_extradata(AVCodecContext *avctx, OpusParseContext *s)
Definition: opus_parse.c:296
AVCodecParser
Definition: avcodec.h:2866
bytestream.h
ff_opus_parser
const AVCodecParser ff_opus_parser
Definition: opus_parser.c:195
bytestream2_init
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:137
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:474
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
AVFormatContext::priv_data
void * priv_data
Format private data.
Definition: avformat.h:1283
ff_opus_parse_packet
int ff_opus_parse_packet(OpusPacket *pkt, const uint8_t *buf, int buf_size, int self_delimiting)
Parse Opus packet info from raw packet data.
Definition: opus_parse.c:95
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