aboutsummaryrefslogtreecommitdiffstats
path: root/libav/dv.c
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2002-11-11 09:07:32 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2002-11-11 09:07:32 +0000
commitc18a2692d2d1916ea9f2bb56803c4069b0213bc7 (patch)
treeee5c6bb97d179ee8904296b7b5ea703646ae5689 /libav/dv.c
parentdf1c67addae53ba2d5ab1bc66700da78506c993e (diff)
downloadffmpeg-c18a2692d2d1916ea9f2bb56803c4069b0213bc7.tar.gz
* cleanup statics & const
Originally committed as revision 1186 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/dv.c')
-rw-r--r--libav/dv.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libav/dv.c b/libav/dv.c
index 44caf5b2bf..1f152a2fba 100644
--- a/libav/dv.c
+++ b/libav/dv.c
@@ -49,8 +49,7 @@ static int dv_read_header(AVFormatContext *s,
}
/* XXX: build fake audio stream when DV audio decoder will be finished */
-int dv_read_packet(AVFormatContext *s,
- AVPacket *pkt)
+static int dv_read_packet(AVFormatContext *s, AVPacket *pkt)
{
int ret, size, dsf;
uint8_t buf[4];
@@ -77,12 +76,12 @@ int dv_read_packet(AVFormatContext *s,
return ret;
}
-int dv_read_close(AVFormatContext *s)
+static int dv_read_close(AVFormatContext *s)
{
return 0;
}
-AVInputFormat dv_iformat = {
+static AVInputFormat dv_iformat = {
"dv",
"DV video format",
sizeof(DVDemuxContext),