comparison bitstream.c @ 6943:dcb0105c2150 libavcodec

unused
author michael
date Fri, 30 May 2008 21:17:10 +0000
parents 29ebf511fb22
children 030cc3278868
comparison
equal deleted inserted replaced
6942:29ebf511fb22 6943:dcb0105c2150
73 } 73 }
74 } 74 }
75 return NULL; 75 return NULL;
76 76
77 } 77 }
78
79 static void av_free_static(void)
80 {
81 while(last_static){
82 av_freep(&array_static[--last_static]);
83 }
84 av_freep(&array_static);
85 }
86
87 78
88 void align_put_bits(PutBitContext *s) 79 void align_put_bits(PutBitContext *s)
89 { 80 {
90 #ifdef ALT_BITSTREAM_WRITER 81 #ifdef ALT_BITSTREAM_WRITER
91 put_bits(s,( - s->index) & 7,0); 82 put_bits(s,( - s->index) & 7,0);