2 * H.26L/H.264/AVC/JVT/14496-10/... parser
3 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
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 * H.264 / AVC / MPEG4 part10 parser.
25 * @author Michael Niedermayer <michaelni@gmx.at>
29 #include "h264_parser.h"
34 int ff_h264_find_frame_end(H264Context
*h
, const uint8_t *buf
, int buf_size
)
38 ParseContext
*pc
= &(h
->s
.parse_context
);
39 //printf("first %02X%02X%02X%02X\n", buf[0], buf[1],buf[2],buf[3]);
40 // mb_addr= pc->mb_addr - 1;
45 for(i
=0; i
<buf_size
; i
++){
47 for(; i
<buf_size
; i
++){
54 if(buf
[i
]==1) state
^= 5; //2->7, 1->4, 0->5
55 else if(buf
[i
]) state
= 7;
56 else state
>>=1; //2->1, 1->0, 0->0
59 if(v
==7 || v
==8 || v
==9){
60 if(pc
->frame_start_found
){
64 pc
->frame_start_found
= 0;
67 }else if(v
==1 || v
==2 || v
==5){
68 if(pc
->frame_start_found
){
72 pc
->frame_start_found
= 1;
85 static int h264_parse(AVCodecParserContext
*s
,
86 AVCodecContext
*avctx
,
87 const uint8_t **poutbuf
, int *poutbuf_size
,
88 const uint8_t *buf
, int buf_size
)
90 H264Context
*h
= s
->priv_data
;
91 ParseContext
*pc
= &h
->s
.parse_context
;
94 if(s
->flags
& PARSER_FLAG_COMPLETE_FRAMES
){
97 next
= ff_h264_find_frame_end(h
, buf
, buf_size
);
99 if (ff_combine_frame(pc
, next
, &buf
, &buf_size
) < 0) {
105 if(next
<0 && next
!= END_NOT_FOUND
){
106 assert(pc
->last_index
+ next
>= 0 );
107 ff_h264_find_frame_end(h
, &pc
->buffer
[pc
->last_index
+ next
], -next
); //update state
112 *poutbuf_size
= buf_size
;
116 static int h264_split(AVCodecContext
*avctx
,
117 const uint8_t *buf
, int buf_size
)
123 for(i
=0; i
<=buf_size
; i
++){
124 if((state
&0xFFFFFF1F) == 0x107)
126 /* if((state&0xFFFFFF1F) == 0x101 || (state&0xFFFFFF1F) == 0x102 || (state&0xFFFFFF1F) == 0x105){
128 if((state
&0xFFFFFF00) == 0x100 && (state
&0xFFFFFF1F) != 0x107 && (state
&0xFFFFFF1F) != 0x108 && (state
&0xFFFFFF1F) != 0x109){
130 while(i
>4 && buf
[i
-5]==0) i
--;
135 state
= (state
<<8) | buf
[i
];
141 AVCodecParser h264_parser
= {