summaryrefslogtreecommitdiff
path: root/libavformat/c93.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-04-08 09:50:08 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-04-08 09:50:08 +0000
commitf118d254bed53d8cadaedbb295c06639dc0f76aa (patch)
treec530c27c15cbfea7c9d890d6aa0a8cbe0d48b14e /libavformat/c93.c
parentfb12fca35b12cb18f0fdaace17d706d0bd15bdfb (diff)
also remove c93_ prefix for static function in the c93 demuxer
Originally committed as revision 8676 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/c93.c')
-rw-r--r--libavformat/c93.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/c93.c b/libavformat/c93.c
index 86f1253985..89838d5398 100644
--- a/libavformat/c93.c
+++ b/libavformat/c93.c
@@ -42,7 +42,7 @@ typedef struct {
AVStream *audio;
} C93DemuxContext;
-static int c93_probe(AVProbeData *p)
+static int probe(AVProbeData *p)
{
if (p->buf_size < 13)
return 0;
@@ -56,7 +56,7 @@ static int c93_probe(AVProbeData *p)
return 0;
}
-static int c93_read_header(AVFormatContext *s,
+static int read_header(AVFormatContext *s,
AVFormatParameters *ap)
{
AVStream *video;
@@ -103,7 +103,7 @@ static int c93_read_header(AVFormatContext *s,
#define C93_HAS_PALETTE 0x01
#define C93_FIRST_FRAME 0x02
-static int c93_read_packet(AVFormatContext *s, AVPacket *pkt)
+static int read_packet(AVFormatContext *s, AVPacket *pkt)
{
ByteIOContext *pb = &s->pb;
C93DemuxContext *c93 = s->priv_data;
@@ -196,7 +196,7 @@ AVInputFormat c93_demuxer = {
"c93",
"Interplay C93",
sizeof(C93DemuxContext),
- c93_probe,
- c93_read_header,
- c93_read_packet,
+ probe,
+ read_header,
+ read_packet,
};