comparison h263_parser.c @ 11313:367119ffda3f libavcodec

Include h263_parser.h: It contains the prototype for ff_h263_find_frame_end().
author cehoyos
date Sun, 28 Feb 2010 02:44:36 +0000
parents e9d9d946f213
children 7dd2a45249a9
comparison
equal deleted inserted replaced
11312:20752e8b2657 11313:367119ffda3f
23 * @file libavcodec/h263_parser.c 23 * @file libavcodec/h263_parser.c
24 * H.263 parser 24 * H.263 parser
25 */ 25 */
26 26
27 #include "parser.h" 27 #include "parser.h"
28 #include "h263_parser.h"
28 29
29 int ff_h263_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size){ 30 int ff_h263_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size){
30 int vop_found, i; 31 int vop_found, i;
31 uint32_t state; 32 uint32_t state;
32 33