Commit a5dc068e authored by michael's avatar michael

also remove c93_ prefix for static function in the c93 demuxer


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8676 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4cdb8cac
...@@ -42,7 +42,7 @@ typedef struct { ...@@ -42,7 +42,7 @@ typedef struct {
AVStream *audio; AVStream *audio;
} C93DemuxContext; } C93DemuxContext;
static int c93_probe(AVProbeData *p) static int probe(AVProbeData *p)
{ {
if (p->buf_size < 13) if (p->buf_size < 13)
return 0; return 0;
...@@ -56,7 +56,7 @@ static int c93_probe(AVProbeData *p) ...@@ -56,7 +56,7 @@ static int c93_probe(AVProbeData *p)
return 0; return 0;
} }
static int c93_read_header(AVFormatContext *s, static int read_header(AVFormatContext *s,
AVFormatParameters *ap) AVFormatParameters *ap)
{ {
AVStream *video; AVStream *video;
...@@ -103,7 +103,7 @@ static int c93_read_header(AVFormatContext *s, ...@@ -103,7 +103,7 @@ static int c93_read_header(AVFormatContext *s,
#define C93_HAS_PALETTE 0x01 #define C93_HAS_PALETTE 0x01
#define C93_FIRST_FRAME 0x02 #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; ByteIOContext *pb = &s->pb;
C93DemuxContext *c93 = s->priv_data; C93DemuxContext *c93 = s->priv_data;
...@@ -196,7 +196,7 @@ AVInputFormat c93_demuxer = { ...@@ -196,7 +196,7 @@ AVInputFormat c93_demuxer = {
"c93", "c93",
"Interplay C93", "Interplay C93",
sizeof(C93DemuxContext), sizeof(C93DemuxContext),
c93_probe, probe,
c93_read_header, read_header,
c93_read_packet, read_packet,
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment