mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Do not rescale AV_NOPTS_VALUE in output_example.c
Originally committed as revision 14345 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
00a750009f
commit
fb34e75d2a
@ -156,6 +156,7 @@ static void write_audio_frame(AVFormatContext *oc, AVStream *st)
|
||||
|
||||
pkt.size= avcodec_encode_audio(c, audio_outbuf, audio_outbuf_size, samples);
|
||||
|
||||
if (c->coded_frame->pts != AV_NOPTS_VALUE)
|
||||
pkt.pts= av_rescale_q(c->coded_frame->pts, c->time_base, st->time_base);
|
||||
pkt.flags |= PKT_FLAG_KEY;
|
||||
pkt.stream_index= st->index;
|
||||
@ -380,6 +381,7 @@ static void write_video_frame(AVFormatContext *oc, AVStream *st)
|
||||
AVPacket pkt;
|
||||
av_init_packet(&pkt);
|
||||
|
||||
if (c->coded_frame->pts != AV_NOPTS_VALUE)
|
||||
pkt.pts= av_rescale_q(c->coded_frame->pts, c->time_base, st->time_base);
|
||||
if(c->coded_frame->key_frame)
|
||||
pkt.flags |= PKT_FLAG_KEY;
|
||||
|
Loading…
Reference in New Issue
Block a user