diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-14 21:06:10 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-14 21:06:10 +0000 |
commit | 7b0fb8b77a41206104e106cce1a29a0b379434e4 (patch) | |
tree | e3c2d92c06eb8f763a2eaec5af49d7b3d9cdcd65 | |
parent | 835790846c779cdb3225c262b83aa9cd570bfd0d (diff) | |
download | ffmpeg-7b0fb8b77a41206104e106cce1a29a0b379434e4.tar.gz |
fix warning, write_ftyp return int now
Originally committed as revision 13769 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/movenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index d5102f7448..abc4d58fa9 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -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); |