FFmpeg
dpx_parser.c
Go to the documentation of this file.
1 /*
2  * DPX parser
3  * Copyright (c) 2013 Paul B Mahol
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 
22 /**
23  * @file
24  * DPX parser
25  */
26 
27 #include "libavutil/bswap.h"
28 #include "libavutil/common.h"
29 
30 #include "parser.h"
31 
32 typedef struct DPXParseContext {
34  uint32_t index;
35  uint32_t fsize;
36  uint32_t remaining_size;
37  int is_be;
39 
41  const uint8_t **poutbuf, int *poutbuf_size,
42  const uint8_t *buf, int buf_size)
43 {
44  DPXParseContext *d = s->priv_data;
45  uint32_t state = d->pc.state;
46  int next = END_NOT_FOUND;
47  int i = 0;
48 
49  s->pict_type = AV_PICTURE_TYPE_I;
50 
51  *poutbuf_size = 0;
52  if (buf_size == 0)
53  next = 0;
54 
55  if (!d->pc.frame_start_found) {
56  for (; i < buf_size; i++) {
57  state = (state << 8) | buf[i];
58  if (state == MKBETAG('S','D','P','X') ||
59  state == MKTAG('S','D','P','X')) {
60  d->pc.frame_start_found = 1;
61  d->is_be = state == MKBETAG('S','D','P','X');
62  d->index = 0;
63  break;
64  }
65  }
66  d->pc.state = state;
67  } else {
68  if (d->remaining_size) {
69  i = FFMIN(d->remaining_size, buf_size);
70  d->remaining_size -= i;
71  if (d->remaining_size)
72  goto flush;
73  }
74  }
75 
76  for (; d->pc.frame_start_found && i < buf_size; i++) {
77  d->pc.state = (d->pc.state << 8) | buf[i];
78  d->index++;
79  if (d->index == 17) {
80  d->fsize = d->is_be ? d->pc.state : av_bswap32(d->pc.state);
81  if (d->fsize <= 1664) {
82  d->pc.frame_start_found = 0;
83  goto flush;
84  }
85  if (d->fsize > buf_size - i + 19)
86  d->remaining_size = d->fsize - buf_size + i - 19;
87  else
88  i += d->fsize - 19;
89 
90  break;
91  } else if (d->index > 17) {
92  if (d->pc.state == MKBETAG('S','D','P','X') ||
93  d->pc.state == MKTAG('S','D','P','X')) {
94  next = i - 3;
95  break;
96  }
97  }
98  }
99 
100 flush:
101  if (ff_combine_frame(&d->pc, next, &buf, &buf_size) < 0)
102  return buf_size;
103 
104  d->pc.frame_start_found = 0;
105 
106  *poutbuf = buf;
107  *poutbuf_size = buf_size;
108  return next;
109 }
110 
112  .codec_ids = { AV_CODEC_ID_DPX },
113  .priv_data_size = sizeof(DPXParseContext),
114  .parser_parse = dpx_parse,
115  .parser_close = ff_parse_close,
116 };
AV_CODEC_ID_DPX
@ AV_CODEC_ID_DPX
Definition: codec_id.h:180
ff_parse_close
void ff_parse_close(AVCodecParserContext *s)
Definition: parser.c:289
dpx_parse
static int dpx_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition: dpx_parser.c:40
ParseContext
Definition: parser.h:28
DPXParseContext
Definition: dpx_parser.c:32
DPXParseContext::is_be
int is_be
Definition: dpx_parser.c:37
ff_dpx_parser
const AVCodecParser ff_dpx_parser
Definition: dpx_parser.c:111
state
static struct @382 state
s
#define s(width, name)
Definition: cbs_vp9.c:198
DPXParseContext::fsize
uint32_t fsize
Definition: dpx_parser.c:35
DPXParseContext::index
uint32_t index
Definition: dpx_parser.c:34
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:279
flush
void(* flush)(AVBSFContext *ctx)
Definition: dts2pts.c:367
AVCodecParser::codec_ids
int codec_ids[7]
Definition: avcodec.h:2854
av_bswap32
#define av_bswap32
Definition: bswap.h:28
MKBETAG
#define MKBETAG(a, b, c, d)
Definition: macros.h:56
DPXParseContext::pc
ParseContext pc
Definition: dpx_parser.c:33
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:255
common.h
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
parser.h
AVCodecParserContext
Definition: avcodec.h:2694
bswap.h
AVCodecContext
main external API structure.
Definition: avcodec.h:445
DPXParseContext::remaining_size
uint32_t remaining_size
Definition: dpx_parser.c:36
END_NOT_FOUND
#define END_NOT_FOUND
Definition: parser.h:40
AVCodecParser
Definition: avcodec.h:2853
d
d
Definition: ffmpeg_filter.c:425
MKTAG
#define MKTAG(a, b, c, d)
Definition: macros.h:55