Commit 1ad3e045 authored by michael's avatar michael

pts must be in time_base units


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4556 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent cb006455
...@@ -145,7 +145,7 @@ static int oggvorbis_encode_frame(AVCodecContext *avccontext, ...@@ -145,7 +145,7 @@ static int oggvorbis_encode_frame(AVCodecContext *avccontext,
op2->packet = context->buffer + sizeof(ogg_packet); op2->packet = context->buffer + sizeof(ogg_packet);
l= op2->bytes; l= op2->bytes;
avccontext->coded_frame->pts= op2->granulepos; avccontext->coded_frame->pts= av_rescale_q(op2->granulepos, (AVRational){1, avccontext->sample_rate}, avccontext->time_base);
memcpy(packets, op2->packet, l); memcpy(packets, op2->packet, l);
context->buffer_index -= l + sizeof(ogg_packet); context->buffer_index -= l + sizeof(ogg_packet);
......
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