aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean First <jeanfirst@gmail.com>2011-12-30 21:08:05 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-12-31 02:27:11 +0100
commit8aed73c355f71c4a4d1e3d750d73a137150eebea (patch)
treee38cf851870b1ecaf4940aaa1e13ab056684366a
parent576ada791a5085b7427c9062ba4f65e811914bd0 (diff)
downloadffmpeg-8aed73c355f71c4a4d1e3d750d73a137150eebea.tar.gz
movenc: remove unused variables
Signed-off-by: Jean First <jeanfirst@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavformat/movenc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index da22c4e855..e5f0c4c264 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -2024,7 +2024,6 @@ static int mov_write_moov_tag(AVIOContext *pb, MOVMuxContext *mov,
static int mov_write_mfhd_tag(AVIOContext *pb, MOVMuxContext *mov)
{
- int i;
int64_t pos = avio_tell(pb);
avio_wb32(pb, 0); /* size placeholder*/
ffio_wfourcc(pb, "mfhd");
@@ -2600,7 +2599,6 @@ static int update_first_fragment(AVFormatContext *s)
{
MOVMuxContext *mov = s->priv_data;
AVIOContext *pb = s->pb;
- int res = 0;
int i;
int64_t moov_pos = avio_tell(pb);