1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

fix warning, write_ftyp return int now

Originally committed as revision 13769 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2008-06-14 21:06:10 +00:00
parent 835790846c
commit 7b0fb8b77a

View File

@ -1374,7 +1374,7 @@ static int mov_write_mdat_tag(ByteIOContext *pb, MOVContext *mov)
}
/* TODO: This needs to be more general */
static void mov_write_ftyp_tag(ByteIOContext *pb, AVFormatContext *s)
static int mov_write_ftyp_tag(ByteIOContext *pb, AVFormatContext *s)
{
MOVContext *mov = s->priv_data;
offset_t pos = url_ftell(pb);