summaryrefslogtreecommitdiff
path: root/libav
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2002-08-09 13:04:27 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2002-08-09 13:04:27 +0000
commit840824970ccb485d20202b003366e5ff95fd91e7 (patch)
tree9c7e2c95761d7041bda84755186f0a37ea4a8499 /libav
parent3625e88ab70f5550609b6622223fed691f513a88 (diff)
* using statics
Originally committed as revision 850 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav')
-rw-r--r--libav/gif.c38
1 files changed, 8 insertions, 30 deletions
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<GIF_CHUNKS;i++) {
- put_bits_rev(&p, 9, gif_clut_index(NULL, *buf, buf[1], buf[2]));
+ gif_put_bits_rev(&p, 9, gif_clut_index(NULL, *buf, buf[1], buf[2]));
buf+=3;
}
if(left<=GIF_CHUNKS) {
- put_bits_rev(&p, 9, 0x101); /* end of stream */
- flush_put_bits_rev(&p);
+ gif_put_bits_rev(&p, 9, 0x101); /* end of stream */
+ gif_flush_put_bits_rev(&p);
}
if(pbBufPtr(&p) - p.buf > 0) {
put_byte(pb, pbBufPtr(&p) - p.buf); /* byte count of the packet */