From 840824970ccb485d20202b003366e5ff95fd91e7 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Fri, 9 Aug 2002 13:04:27 +0000 Subject: * using statics Originally committed as revision 850 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libav/gif.c | 38 ++++++++------------------------------ 1 file changed, 8 insertions(+), 30 deletions(-) (limited to 'libav/gif.c') diff --git a/libav/gif.c b/libav/gif.c index fe426e7415..6becf52a49 100644 --- a/libav/gif.c +++ b/libav/gif.c @@ -58,7 +58,7 @@ typedef struct { * echo -n "{ 0x$r, 0x$g, 0x$b }, "; done; echo ""; done; done */ -const rgb_triplet gif_clut[216] = { +static const rgb_triplet gif_clut[216] = { { 0x00, 0x00, 0x00 }, { 0x00, 0x00, 0x33 }, { 0x00, 0x00, 0x66 }, { 0x00, 0x00, 0x99 }, { 0x00, 0x00, 0xcc }, { 0x00, 0x00, 0xff }, { 0x00, 0x33, 0x00 }, { 0x00, 0x33, 0x33 }, { 0x00, 0x33, 0x66 }, { 0x00, 0x33, 0x99 }, { 0x00, 0x33, 0xcc }, { 0x00, 0x33, 0xff }, { 0x00, 0x66, 0x00 }, { 0x00, 0x66, 0x33 }, { 0x00, 0x66, 0x66 }, { 0x00, 0x66, 0x99 }, { 0x00, 0x66, 0xcc }, { 0x00, 0x66, 0xff }, @@ -106,15 +106,7 @@ const rgb_triplet gif_clut[216] = { # error no ALT_BITSTREAM_WRITER support for now #endif -void init_put_bits_rev(PutBitContext *s, - UINT8 *buffer, int buffer_size, - void *opaque, - void (*write_data)(void *, UINT8 *, int)) -{ - init_put_bits(s, buffer, buffer_size, opaque, write_data); -} - -void put_bits_rev(PutBitContext *s, int n, unsigned int value) +static void gif_put_bits_rev(PutBitContext *s, int n, unsigned int value) { unsigned int bit_buf; int bit_cnt; @@ -158,19 +150,8 @@ void put_bits_rev(PutBitContext *s, int n, unsigned int value) s->bit_left = 32 - bit_cnt; } -/* return the number of bits output */ -INT64 get_bit_count_rev(PutBitContext *s) -{ - return get_bit_count(s); -} - -void align_put_bits_rev(PutBitContext *s) -{ - align_put_bits(s); -} - /* pad the end of the output stream with zeros */ -void flush_put_bits_rev(PutBitContext *s) +static void gif_flush_put_bits_rev(PutBitContext *s) { while (s->bit_left < 32) { /* XXX: should test end of buffer */ @@ -318,10 +299,7 @@ static int gif_write_video(AVFormatContext *s, left=size/3; - /* XXX:deprecated */ - /*init_put_bits_rev(&p, buffer, sizeof(buf), (void *)pb, gif_put_chunk); *//* mmm found a but in my code: s/sizeof(buf)/150/ */ - - init_put_bits_rev(&p, buffer, 130, NULL, NULL); + init_put_bits(&p, buffer, 130, NULL, NULL); /* * the thing here is the bitstream is written as little packets, with a size byte before @@ -330,16 +308,16 @@ static int gif_write_video(AVFormatContext *s, while(left>0) { - put_bits_rev(&p, 9, 0x0100); /* clear code */ + gif_put_bits_rev(&p, 9, 0x0100); /* clear code */ for(i=0;i 0) { put_byte(pb, pbBufPtr(&p) - p.buf); /* byte count of the packet */ -- cgit v1.2.3