comparison h261.c @ 3071:cc0357a90e8f libavcodec

make some functions static (patch by Dieter < freebsd at sopwith.solgatos.com >)
author aurel
date Sat, 28 Jan 2006 16:05:06 +0000
parents 0b546eab515d
children 8d1b2cc2a75b
comparison
equal deleted inserted replaced
3070:3c32ecc8eefe 3071:cc0357a90e8f
760 760
761 /** 761 /**
762 * decodes the H261 picture header. 762 * decodes the H261 picture header.
763 * @return <0 if no startcode found 763 * @return <0 if no startcode found
764 */ 764 */
765 int h261_decode_picture_header(H261Context *h){ 765 static int h261_decode_picture_header(H261Context *h){
766 MpegEncContext * const s = &h->s; 766 MpegEncContext * const s = &h->s;
767 int format, i; 767 int format, i;
768 uint32_t startcode= 0; 768 uint32_t startcode= 0;
769 769
770 for(i= s->gb.size_in_bits - get_bits_count(&s->gb); i>24; i-=1){ 770 for(i= s->gb.size_in_bits - get_bits_count(&s->gb); i>24; i-=1){