FFmpeg
cavs_parser.c
Go to the documentation of this file.
1 /*
2  * Chinese AVS video (AVS1-P2, JiZhun profile) parser.
3  * Copyright (c) 2006 Stefan Gehrer <stefan.gehrer@gmx.de>
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  * Chinese AVS video (AVS1-P2, JiZhun profile) parser
25  * @author Stefan Gehrer <stefan.gehrer@gmx.de>
26  */
27 
28 #include "parser.h"
29 #include "cavs.h"
30 #include "parser_internal.h"
31 
32 
33 /**
34  * Find the end of the current frame in the bitstream.
35  * @return the position of the first byte of the next frame, or -1
36  */
37 static int cavs_find_frame_end(ParseContext *pc, const uint8_t *buf,
38  int buf_size) {
39  int pic_found, i;
40  uint32_t state;
41 
42  pic_found= pc->frame_start_found;
43  state= pc->state;
44 
45  i=0;
46  if(!pic_found){
47  for(i=0; i<buf_size; i++){
48  state= (state<<8) | buf[i];
50  i++;
51  pic_found=1;
52  break;
53  }
54  }
55  }
56 
57  if(pic_found){
58  /* EOF considered as end of frame */
59  if (buf_size == 0)
60  return 0;
61  for(; i<buf_size; i++){
62  state= (state<<8) | buf[i];
65  pc->frame_start_found=0;
66  pc->state=-1;
67  return i-3;
68  }
69  }
70  }
71  pc->frame_start_found= pic_found;
72  pc->state= state;
73  return END_NOT_FOUND;
74 }
75 
77  AVCodecContext *avctx,
78  const uint8_t **poutbuf, int *poutbuf_size,
79  const uint8_t *buf, int buf_size)
80 {
81  ParseContext *pc = s->priv_data;
82  int next;
83 
84  if(s->flags & PARSER_FLAG_COMPLETE_FRAMES){
85  next= buf_size;
86  }else{
87  next= cavs_find_frame_end(pc, buf, buf_size);
88 
89  if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
90  *poutbuf = NULL;
91  *poutbuf_size = 0;
92  return buf_size;
93  }
94  }
95  *poutbuf = buf;
96  *poutbuf_size = buf_size;
97  return next;
98 }
99 
102  .priv_data_size = sizeof(ParseContext),
105 };
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
close
static av_cold void close(AVCodecParserContext *s)
Definition: apv_parser.c:136
ParseContext
Definition: parser.h:28
s
#define s(width, name)
Definition: cbs_vp9.c:198
PIC_PB_START_CODE
#define PIC_PB_START_CODE
Definition: cavs.h:43
NULL
#define NULL
Definition: coverity.c:32
state
static struct @541 state
ParseContext::frame_start_found
int frame_start_found
Definition: parser.h:34
PIC_I_START_CODE
#define PIC_I_START_CODE
Definition: cavs.h:42
CAVS_START_CODE
#define CAVS_START_CODE
Definition: cavs.h:41
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
cavs_find_frame_end
static int cavs_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size)
Find the end of the current frame in the bitstream.
Definition: cavs_parser.c:37
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
ff_cavsvideo_parser
const FFCodecParser ff_cavsvideo_parser
Definition: cavs_parser.c:100
PARSER_FLAG_COMPLETE_FRAMES
#define PARSER_FLAG_COMPLETE_FRAMES
Definition: avcodec.h:2609
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
cavsvideo_parse
static int cavsvideo_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition: cavs_parser.c:76
AV_CODEC_ID_CAVS
@ AV_CODEC_ID_CAVS
Definition: codec_id.h:139
parser.h
PARSER_CODEC_LIST
#define PARSER_CODEC_LIST(...)
Definition: parser_internal.h:76
AVCodecParserContext
Definition: avcodec.h:2575
AVCodecContext
main external API structure.
Definition: avcodec.h:431
END_NOT_FOUND
#define END_NOT_FOUND
Definition: parser.h:40
cavs.h