diff options
author | Alex Converse <alex.converse@gmail.com> | 2012-04-12 17:02:24 -0700 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2012-04-12 18:34:45 -0700 |
commit | 73b7437f1d5a45fc1d0d8a8aa13622ff794e913e (patch) | |
tree | fcba69b2cb68da6ef4190e7c5e9540a4db0430ae | |
parent | 6048fd22ee409bd553014ed62e3f1a6a62dba39e (diff) | |
download | ffmpeg-73b7437f1d5a45fc1d0d8a8aa13622ff794e913e.tar.gz |
movenc: Remove a dead initialization
-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 e4dbbc99da..dd2598b5ed 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -901,7 +901,7 @@ static const AVCodecTag codec_3gp_tags[] = { static int mov_find_codec_tag(AVFormatContext *s, MOVTrack *track) { - int tag = track->enc->codec_tag; + int tag; if (track->mode == MODE_MP4 || track->mode == MODE_PSP) tag = mp4_get_codec_tag(s, track); |