Commit 1aad0dfd authored by Baptiste Coudurier's avatar Baptiste Coudurier

remove useless sampleDuration

Originally committed as revision 7281 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b596102e
...@@ -54,7 +54,6 @@ typedef struct MOVIndex { ...@@ -54,7 +54,6 @@ typedef struct MOVIndex {
long time; long time;
int64_t trackDuration; int64_t trackDuration;
long sampleCount; long sampleCount;
long sampleDuration;
long sampleSize; long sampleSize;
int hasKeyframes; int hasKeyframes;
int hasBframes; int hasBframes;
...@@ -1501,12 +1500,10 @@ static int mov_write_header(AVFormatContext *s) ...@@ -1501,12 +1500,10 @@ static int mov_write_header(AVFormatContext *s)
if(st->codec->codec_type == CODEC_TYPE_VIDEO){ if(st->codec->codec_type == CODEC_TYPE_VIDEO){
track->tag = mov_find_video_codec_tag(s, track); track->tag = mov_find_video_codec_tag(s, track);
track->timescale = st->codec->time_base.den; 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); av_set_pts_info(st, 64, 1, st->codec->time_base.den);
}else if(st->codec->codec_type == CODEC_TYPE_AUDIO){ }else if(st->codec->codec_type == CODEC_TYPE_AUDIO){
track->tag = mov_find_audio_codec_tag(s, track); track->tag = mov_find_audio_codec_tag(s, track);
track->timescale = st->codec->sample_rate; track->timescale = st->codec->sample_rate;
track->sampleDuration = st->codec->frame_size;
av_set_pts_info(st, 64, 1, st->codec->sample_rate); av_set_pts_info(st, 64, 1, st->codec->sample_rate);
switch(track->enc->codec_id){ switch(track->enc->codec_id){
case CODEC_ID_MP3: case CODEC_ID_MP3:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment