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 #include "parser_internal.h"
32 
33 typedef struct DPXParseContext {
35  uint32_t index;
36  uint32_t fsize;
37  uint32_t remaining_size;
38  int is_be;
40 
42  const uint8_t **poutbuf, int *poutbuf_size,
43  const uint8_t *buf, int buf_size)
44 {
45  DPXParseContext *d = s->priv_data;
46  uint32_t state = d->pc.state;
47  int next = END_NOT_FOUND;
48  int i = 0;
49 
50  s->pict_type = AV_PICTURE_TYPE_I;
51 
52  *poutbuf_size = 0;
53  if (buf_size == 0)
54  next = 0;
55 
56  if (!d->pc.frame_start_found) {
57  for (; i < buf_size; i++) {
58  state = (state << 8) | buf[i];
59  if (state == MKBETAG('S','D','P','X') ||
60  state == MKTAG('S','D','P','X')) {
61  d->pc.frame_start_found = 1;
62  d->is_be = state == MKBETAG('S','D','P','X');
63  d->index = 0;
64  break;
65  }
66  }
67  d->pc.state = state;
68  } else {
69  if (d->remaining_size) {
70  i = FFMIN(d->remaining_size, buf_size);
71  d->remaining_size -= i;
72  if (d->remaining_size)
73  goto flush;
74  }
75  }
76 
77  for (; d->pc.frame_start_found && i < buf_size; i++) {
78  d->pc.state = (d->pc.state << 8) | buf[i];
79  d->index++;
80  if (d->index == 17) {
81  d->fsize = d->is_be ? d->pc.state : av_bswap32(d->pc.state);
82  if (d->fsize <= 1664) {
83  d->pc.frame_start_found = 0;
84  goto flush;
85  }
86  if (d->fsize > buf_size - i + 19)
87  d->remaining_size = d->fsize - buf_size + i - 19;
88  else
89  i += d->fsize - 19;
90 
91  break;
92  } else if (d->index > 17) {
93  if (d->pc.state == MKBETAG('S','D','P','X') ||
94  d->pc.state == MKTAG('S','D','P','X')) {
95  next = i - 3;
96  break;
97  }
98  }
99  }
100 
101 flush:
102  if (ff_combine_frame(&d->pc, next, &buf, &buf_size) < 0)
103  return buf_size;
104 
105  d->pc.frame_start_found = 0;
106 
107  *poutbuf = buf;
108  *poutbuf_size = buf_size;
109  return next;
110 }
111 
114  .priv_data_size = sizeof(DPXParseContext),
115  .parse = dpx_parse,
117 };
AV_CODEC_ID_DPX
@ AV_CODEC_ID_DPX
Definition: codec_id.h:180
ff_parse_close
av_cold void ff_parse_close(AVCodecParserContext *s)
Definition: parser.c:298
parser_internal.h
ParseContext::state
uint32_t state
contains the last few bytes in MSB order
Definition: parser.h:33
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:41
close
static av_cold void close(AVCodecParserContext *s)
Definition: apv_parser.c:136
ParseContext
Definition: parser.h:28
DPXParseContext
Definition: dpx_parser.c:33
DPXParseContext::is_be
int is_be
Definition: dpx_parser.c:38
s
#define s(width, name)
Definition: cbs_vp9.c:198
DPXParseContext::fsize
uint32_t fsize
Definition: dpx_parser.c:36
ff_dpx_parser
const FFCodecParser ff_dpx_parser
Definition: dpx_parser.c:112
state
static struct @541 state
DPXParseContext::index
uint32_t index
Definition: dpx_parser.c:35
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:278
ParseContext::frame_start_found
int frame_start_found
Definition: parser.h:34
flush
void(* flush)(AVBSFContext *ctx)
Definition: dts2pts.c:552
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
av_bswap32
#define av_bswap32
Definition: bswap.h:47
MKBETAG
#define MKBETAG(a, b, c, d)
Definition: macros.h:56
DPXParseContext::pc
ParseContext pc
Definition: dpx_parser.c:34
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
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
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
bswap.h
AVCodecContext
main external API structure.
Definition: avcodec.h:431
DPXParseContext::remaining_size
uint32_t remaining_size
Definition: dpx_parser.c:37
END_NOT_FOUND
#define END_NOT_FOUND
Definition: parser.h:40
MKTAG
#define MKTAG(a, b, c, d)
Definition: macros.h:55