2 * Chinese AVS video (AVS1-P2, JiZhun profile) parser.
3 * Copyright (c) 2006 Stefan Gehrer <stefan.gehrer@gmx.de>
5 * This file is part of FFmpeg.
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.
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.
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
24 * Chinese AVS video (AVS1-P2, JiZhun profile) parser
25 * @author Stefan Gehrer <stefan.gehrer@gmx.de>
33 * finds the end of the current frame in the bitstream.
34 * @return the position of the first byte of the next frame, or -1
36 static int cavs_find_frame_end(ParseContext
*pc
, const uint8_t *buf
,
41 pic_found
= pc
->frame_start_found
;
46 for(i
=0; i
<buf_size
; i
++){
47 state
= (state
<<8) | buf
[i
];
48 if(state
== PIC_I_START_CODE
|| state
== PIC_PB_START_CODE
){
57 /* EOF considered as end of frame */
60 for(; i
<buf_size
; i
++){
61 state
= (state
<<8) | buf
[i
];
62 if((state
&0xFFFFFF00) == 0x100){
63 if(state
< SLICE_MIN_START_CODE
|| state
> SLICE_MAX_START_CODE
){
64 pc
->frame_start_found
=0;
71 pc
->frame_start_found
= pic_found
;
76 static int cavsvideo_parse(AVCodecParserContext
*s
,
77 AVCodecContext
*avctx
,
78 const uint8_t **poutbuf
, int *poutbuf_size
,
79 const uint8_t *buf
, int buf_size
)
81 ParseContext
*pc
= s
->priv_data
;
84 if(s
->flags
& PARSER_FLAG_COMPLETE_FRAMES
){
87 next
= cavs_find_frame_end(pc
, buf
, buf_size
);
89 if (ff_combine_frame(pc
, next
, &buf
, &buf_size
) < 0) {
96 *poutbuf_size
= buf_size
;
100 AVCodecParser cavsvideo_parser
= {
102 sizeof(ParseContext1
),