From 1aad0dfd624992b821354e015773ac3c794df773 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Mon, 11 Dec 2006 13:31:20 +0000 Subject: [PATCH] remove useless sampleDuration Originally committed as revision 7281 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/movenc.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 1cc27199f80..0d1b8f8ae3f 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -54,7 +54,6 @@ typedef struct MOVIndex { long time; int64_t trackDuration; long sampleCount; - long sampleDuration; long sampleSize; int hasKeyframes; int hasBframes; @@ -1501,12 +1500,10 @@ static int mov_write_header(AVFormatContext *s) if(st->codec->codec_type == CODEC_TYPE_VIDEO){ track->tag = mov_find_video_codec_tag(s, track); track->timescale = st->codec->time_base.den; - track->sampleDuration = st->codec->time_base.num; av_set_pts_info(st, 64, 1, st->codec->time_base.den); }else if(st->codec->codec_type == CODEC_TYPE_AUDIO){ track->tag = mov_find_audio_codec_tag(s, track); track->timescale = st->codec->sample_rate; - track->sampleDuration = st->codec->frame_size; av_set_pts_info(st, 64, 1, st->codec->sample_rate); switch(track->enc->codec_id){ case CODEC_ID_MP3: -- 2.39.5