mirror of https://git.ffmpeg.org/ffmpeg.git
do not rescale AV_NOPTS_VALUE
Originally committed as revision 4577 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
434df899fe
commit
e7902f2095
10
ffmpeg.c
10
ffmpeg.c
|
@ -583,7 +583,7 @@ static void do_audio_out(AVFormatContext *s,
|
||||||
pkt.stream_index= ost->index;
|
pkt.stream_index= ost->index;
|
||||||
pkt.data= audio_out;
|
pkt.data= audio_out;
|
||||||
pkt.size= ret;
|
pkt.size= ret;
|
||||||
if(enc->coded_frame)
|
if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE)
|
||||||
pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
|
pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
|
||||||
pkt.flags |= PKT_FLAG_KEY;
|
pkt.flags |= PKT_FLAG_KEY;
|
||||||
av_interleaved_write_frame(s, &pkt);
|
av_interleaved_write_frame(s, &pkt);
|
||||||
|
@ -627,7 +627,7 @@ static void do_audio_out(AVFormatContext *s,
|
||||||
pkt.stream_index= ost->index;
|
pkt.stream_index= ost->index;
|
||||||
pkt.data= audio_out;
|
pkt.data= audio_out;
|
||||||
pkt.size= ret;
|
pkt.size= ret;
|
||||||
if(enc->coded_frame)
|
if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE)
|
||||||
pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
|
pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
|
||||||
pkt.flags |= PKT_FLAG_KEY;
|
pkt.flags |= PKT_FLAG_KEY;
|
||||||
av_interleaved_write_frame(s, &pkt);
|
av_interleaved_write_frame(s, &pkt);
|
||||||
|
@ -967,7 +967,7 @@ static void do_video_out(AVFormatContext *s,
|
||||||
enc->coded_frame = dec->coded_frame; //FIXME/XXX remove this hack
|
enc->coded_frame = dec->coded_frame; //FIXME/XXX remove this hack
|
||||||
pkt.data= (uint8_t *)final_picture;
|
pkt.data= (uint8_t *)final_picture;
|
||||||
pkt.size= sizeof(AVPicture);
|
pkt.size= sizeof(AVPicture);
|
||||||
if(dec->coded_frame)
|
if(dec->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE)
|
||||||
pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
|
pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
|
||||||
if(dec->coded_frame && dec->coded_frame->key_frame)
|
if(dec->coded_frame && dec->coded_frame->key_frame)
|
||||||
pkt.flags |= PKT_FLAG_KEY;
|
pkt.flags |= PKT_FLAG_KEY;
|
||||||
|
@ -1007,7 +1007,7 @@ static void do_video_out(AVFormatContext *s,
|
||||||
if(ret>0){
|
if(ret>0){
|
||||||
pkt.data= bit_buffer;
|
pkt.data= bit_buffer;
|
||||||
pkt.size= ret;
|
pkt.size= ret;
|
||||||
if(enc->coded_frame)
|
if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE)
|
||||||
pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
|
pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
|
||||||
/*av_log(NULL, AV_LOG_DEBUG, "encoder -> %lld/%lld\n",
|
/*av_log(NULL, AV_LOG_DEBUG, "encoder -> %lld/%lld\n",
|
||||||
pkt.pts != AV_NOPTS_VALUE ? av_rescale(pkt.pts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1,
|
pkt.pts != AV_NOPTS_VALUE ? av_rescale(pkt.pts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1,
|
||||||
|
@ -1494,7 +1494,7 @@ static int output_packet(AVInputStream *ist, int ist_index,
|
||||||
break;
|
break;
|
||||||
pkt.data= bit_buffer;
|
pkt.data= bit_buffer;
|
||||||
pkt.size= ret;
|
pkt.size= ret;
|
||||||
if(enc->coded_frame)
|
if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE)
|
||||||
pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
|
pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
|
||||||
av_interleaved_write_frame(os, &pkt);
|
av_interleaved_write_frame(os, &pkt);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue