FFmpeg
cook_parser.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012 Justin Ruggles <justin.ruggles@gmail.com>
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  * Cook audio parser
24  *
25  * Determines subpacket duration from extradata.
26  */
27 
28 #include <stdint.h>
29 
30 #include "libavutil/intreadwrite.h"
31 #include "avcodec.h"
32 #include "parser_internal.h"
33 
34 typedef struct CookParseContext {
35  int duration;
37 
39  const uint8_t **poutbuf, int *poutbuf_size,
40  const uint8_t *buf, int buf_size)
41 {
43 
44  if (!s->duration &&
45  avctx->extradata && avctx->extradata_size >= 8 && avctx->ch_layout.nb_channels)
46  s->duration = AV_RB16(avctx->extradata + 4) / avctx->ch_layout.nb_channels;
47 
48  s1->duration = s->duration;
49 
50  /* always return the full packet. this parser isn't doing any splitting or
51  combining, only setting packet duration */
52  *poutbuf = buf;
53  *poutbuf_size = buf_size;
54  return buf_size;
55 }
56 
59  .priv_data_size = sizeof(CookParseContext),
60  .parse = cook_parse,
61 };
cook_parse
static int cook_parse(AVCodecParserContext *s1, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition: cook_parser.c:38
AVCodecParserContext::duration
int duration
Duration of the current frame.
Definition: avcodec.h:2689
parser_internal.h
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:329
AVCodecContext::ch_layout
AVChannelLayout ch_layout
Audio channel layout.
Definition: avcodec.h:1039
AVCodecContext::extradata_size
int extradata_size
Definition: avcodec.h:515
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:198
ff_cook_parser
const FFCodecParser ff_cook_parser
Definition: cook_parser.c:57
CookParseContext::duration
int duration
Definition: cook_parser.c:35
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
FFCodecParser
Definition: parser_internal.h:29
AVCodecContext::extradata
uint8_t * extradata
Out-of-band global headers that may be used by some codecs.
Definition: avcodec.h:514
PARSER_CODEC_LIST
#define PARSER_CODEC_LIST(...)
Definition: parser_internal.h:76
avcodec.h
AVCodecParserContext
Definition: avcodec.h:2575
AVCodecContext
main external API structure.
Definition: avcodec.h:431
AV_CODEC_ID_COOK
@ AV_CODEC_ID_COOK
Definition: codec_id.h:479
AVCodecParserContext::priv_data
void * priv_data
Definition: avcodec.h:2576
CookParseContext
Definition: cook_parser.c:34
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