diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-01 03:12:39 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-01 03:49:38 +0100 |
commit | 54e40b9c14f5bc1f6362093c8cba698571847e59 (patch) | |
tree | ba0a66d64cbffc0903bf4d1e14afb329974d1a86 /ffmpeg.c | |
parent | 6e96ad8215a6950b4d303e784ca35860ba765478 (diff) | |
download | ffmpeg-54e40b9c14f5bc1f6362093c8cba698571847e59.tar.gz |
ffmpeg: factorize duration calculation in transcode_video()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 25 |
1 files changed, 11 insertions, 14 deletions
@@ -1834,6 +1834,7 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int #if CONFIG_AVFILTER int frame_available = 1; #endif + int duration=0; if (!(decoded_frame = avcodec_alloc_frame())) return AVERROR(ENOMEM); @@ -1841,13 +1842,17 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int pkt->dts = *pkt_dts; *pkt_pts = AV_NOPTS_VALUE; - if (*pkt_dts != AV_NOPTS_VALUE && pkt->duration) { - *pkt_dts += av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q); - } else if(*pkt_dts != AV_NOPTS_VALUE && ist->st->codec->time_base.num != 0) { + if (pkt->duration) { + duration = av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q); + } else if(ist->st->codec->time_base.num != 0) { int ticks= ist->st->parser ? ist->st->parser->repeat_pict+1 : ist->st->codec->ticks_per_frame; - *pkt_dts += ((int64_t)AV_TIME_BASE * + duration = ((int64_t)AV_TIME_BASE * ist->st->codec->time_base.num * ticks) / - ist->st->codec->time_base.den; + ist->st->codec->time_base.den; + } + + if(*pkt_dts != AV_NOPTS_VALUE && duration) { + *pkt_dts += duration; }else *pkt_dts = AV_NOPTS_VALUE; @@ -1866,15 +1871,7 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int if(decoded_frame->best_effort_timestamp != AV_NOPTS_VALUE) ist->next_pts = ist->pts = decoded_frame->best_effort_timestamp; - if (pkt->duration) - ist->next_pts += av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q); - else if (ist->st->codec->time_base.num != 0) { - int ticks = ist->st->parser ? ist->st->parser->repeat_pict + 1 : - ist->st->codec->ticks_per_frame; - ist->next_pts += ((int64_t)AV_TIME_BASE * - ist->st->codec->time_base.num * ticks) / - ist->st->codec->time_base.den; - } + ist->next_pts += duration; pkt->size = 0; pre_process_video_frame(ist, (AVPicture *)decoded_frame, &buffer_to_free); |