comparison h263_parser.c @ 5258:4372aeade5dc libavcodec

trivial warning fixes
author mru
date Sun, 08 Jul 2007 23:15:08 +0000
parents 387979b83884
children 4bc09f4a0885
comparison
equal deleted inserted replaced
5257:f2eaf5afe6ae 5258:4372aeade5dc
69 ParseContext *pc = s->priv_data; 69 ParseContext *pc = s->priv_data;
70 int next; 70 int next;
71 71
72 next= ff_h263_find_frame_end(pc, buf, buf_size); 72 next= ff_h263_find_frame_end(pc, buf, buf_size);
73 73
74 if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) { 74 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
75 *poutbuf = NULL; 75 *poutbuf = NULL;
76 *poutbuf_size = 0; 76 *poutbuf_size = 0;
77 return buf_size; 77 return buf_size;
78 } 78 }
79 79