aboutsummaryrefslogtreecommitdiffstats
path: root/libav/asf.c
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2002-11-11 09:20:53 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2002-11-11 09:20:53 +0000
commit0570bf06d45ae3e5c73cb0b32b2101e2668f91e9 (patch)
treed1d7bfe919af0988a4d5e5b3e77b75bfb68bd1e6 /libav/asf.c
parente8c0008912fd1573fdda97988eb5f5e6e50a636a (diff)
downloadffmpeg-0570bf06d45ae3e5c73cb0b32b2101e2668f91e9.tar.gz
* cleanup statics & const
Originally committed as revision 1188 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/asf.c')
-rw-r--r--libav/asf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libav/asf.c b/libav/asf.c
index 4f82e65fa1..892d863c6f 100644
--- a/libav/asf.c
+++ b/libav/asf.c
@@ -874,7 +874,7 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
st->codec.extradata = av_mallocz(st->codec.extradata_size);
get_buffer(pb, st->codec.extradata, st->codec.extradata_size);
}
- st->codec.codec_tag = tag1;
+ st->codec.codec_tag = st->codec.fourcc = tag1;
st->codec.codec_id = codec_get_id(codec_bmp_tags, tag1);
}
pos2 = url_ftell(pb);
@@ -1202,7 +1202,7 @@ static int asf_read_seek(AVFormatContext *s, int64_t pts)
return -1;
}
-AVInputFormat asf_iformat = {
+static AVInputFormat asf_iformat = {
"asf",
"asf format",
sizeof(ASFContext),
@@ -1213,7 +1213,7 @@ AVInputFormat asf_iformat = {
asf_read_seek,
};
-AVOutputFormat asf_oformat = {
+static AVOutputFormat asf_oformat = {
"asf",
"asf format",
"application/octet-stream",
@@ -1230,7 +1230,7 @@ AVOutputFormat asf_oformat = {
asf_write_trailer,
};
-AVOutputFormat asf_stream_oformat = {
+static AVOutputFormat asf_stream_oformat = {
"asf_stream",
"asf format",
"application/octet-stream",