diff c93.c @ 4819:ec6c58426b82 libavcodec

remove c93_ prefix from static functions in c93.c
author michael
date Sun, 08 Apr 2007 09:31:54 +0000
parents 12279b61177b
children 7470749c2384
line wrap: on
line diff
--- a/c93.c	Sat Apr 07 23:31:30 2007 +0000
+++ b/c93.c	Sun Apr 08 09:31:54 2007 +0000
@@ -46,13 +46,13 @@
 #define C93_HAS_PALETTE 0x01
 #define C93_FIRST_FRAME 0x02
 
-static int c93_decode_init(AVCodecContext *avctx)
+static int decode_init(AVCodecContext *avctx)
 {
     avctx->pix_fmt = PIX_FMT_PAL8;
     return 0;
 }
 
-static int c93_decode_end(AVCodecContext *avctx)
+static int decode_end(AVCodecContext *avctx)
 {
     C93DecoderContext * const c93 = avctx->priv_data;
 
@@ -63,7 +63,7 @@
     return 0;
 }
 
-static inline int c93_copy_block(AVCodecContext *avctx, uint8_t *to,
+static inline int copy_block(AVCodecContext *avctx, uint8_t *to,
         uint8_t *from, int offset, int height, int stride)
 {
     int i;
@@ -97,7 +97,7 @@
     return 0;
 }
 
-static inline void c93_draw_n_color(uint8_t *out, int stride, int width,
+static inline void draw_n_color(uint8_t *out, int stride, int width,
          int height, int bpp, uint8_t cols[4], uint8_t grps[4], uint32_t col)
 {
     int x, y;
@@ -113,7 +113,7 @@
     }
 }
 
-static int c93_decode_frame(AVCodecContext *avctx, void *data,
+static int decode_frame(AVCodecContext *avctx, void *data,
                             int *data_size, uint8_t * buf, int buf_size)
 {
     C93DecoderContext * const c93 = avctx->priv_data;
@@ -168,7 +168,7 @@
             switch (bt & 0x0F) {
             case C93_8X8_FROM_PREV:
                 offset = bytestream_get_le16(&buf);
-                if (c93_copy_block(avctx, out, copy_from, offset, 8, stride))
+                if (copy_block(avctx, out, copy_from, offset, 8, stride))
                     return -1;
                 break;
 
@@ -178,7 +178,7 @@
                 for (j = 0; j < 8; j += 4) {
                     for (i = 0; i < 8; i += 4) {
                         offset = bytestream_get_le16(&buf);
-                        if (c93_copy_block(avctx, &out[j*stride+i],
+                        if (copy_block(avctx, &out[j*stride+i],
                                            copy_from, offset, 4, stride))
                             return -1;
                     }
@@ -188,7 +188,7 @@
             case C93_8X8_2COLOR:
                 bytestream_get_buffer(&buf, cols, 2);
                 for (i = 0; i < 8; i++) {
-                    c93_draw_n_color(out + i*stride, stride, 8, 1, 1, cols,
+                    draw_n_color(out + i*stride, stride, 8, 1, 1, cols,
                                      NULL, *buf++);
                 }
 
@@ -201,15 +201,15 @@
                     for (i = 0; i < 8; i += 4) {
                         if ((bt & 0x0F) == C93_4X4_2COLOR) {
                             bytestream_get_buffer(&buf, cols, 2);
-                            c93_draw_n_color(out + i + j*stride, stride, 4, 4,
+                            draw_n_color(out + i + j*stride, stride, 4, 4,
                                     1, cols, NULL, bytestream_get_le16(&buf));
                         } else if ((bt & 0x0F) == C93_4X4_4COLOR) {
                             bytestream_get_buffer(&buf, cols, 4);
-                            c93_draw_n_color(out + i + j*stride, stride, 4, 4,
+                            draw_n_color(out + i + j*stride, stride, 4, 4,
                                     2, cols, NULL, bytestream_get_le32(&buf));
                         } else {
                             bytestream_get_buffer(&buf, grps, 4);
-                            c93_draw_n_color(out + i + j*stride, stride, 4, 4,
+                            draw_n_color(out + i + j*stride, stride, 4, 4,
                                     1, cols, grps, bytestream_get_le16(&buf));
                         }
                     }
@@ -245,9 +245,9 @@
     CODEC_TYPE_VIDEO,
     CODEC_ID_C93,
     sizeof(C93DecoderContext),
-    c93_decode_init,
+    decode_init,
     NULL,
-    c93_decode_end,
-    c93_decode_frame,
+    decode_end,
+    decode_frame,
     CODEC_CAP_DR1,
 };