Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean First <jeanfirst@gmail.com>2011-12-31 00:08:05 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-12-31 05:27:11 +0400
commit8aed73c355f71c4a4d1e3d750d73a137150eebea (patch)
treee38cf851870b1ecaf4940aaa1e13ab056684366a /libavformat
parent576ada791a5085b7427c9062ba4f65e811914bd0 (diff)
movenc: remove unused variables
Signed-off-by: Jean First <jeanfirst@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-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);