Skip to content
Snippets Groups Projects
Commit b7dd4256 authored by Aline Gondim Santos's avatar Aline Gondim Santos
Browse files

misc: set frame time_base when decoding

To properly get the time_base and framerate in the plugins,
we need to set the frame properties when decoding.

GitLab: jami-plugins#23

Change-Id: I69a2235c46b13a15414c4d01821cc1eba5b73987
parent 7b6d5446
No related branches found
No related tags found
No related merge requests found
......@@ -644,6 +644,7 @@ MediaDecoder::decode(AVPacket& packet)
#endif
auto frame = f->pointer();
ret = avcodec_receive_frame(decoderCtx_, frame);
frame->time_base = decoderCtx_->time_base;
if (resolutionChangedCallback_) {
if (decoderCtx_->width != width_ or decoderCtx_->height != height_) {
JAMI_DBG("Resolution changed from %dx%d to %dx%d",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment