Merge "Fixing constant value used to calculate frame pts and duration."

This commit is contained in:
Dmitry Kovalev 2014-05-13 15:10:45 -07:00 коммит произвёл Gerrit Code Review
Родитель 32c51e8222 947748ed19
Коммит b35b426e58
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -886,7 +886,7 @@ static vpx_codec_err_t vp8e_encode(vpx_codec_alg_priv_t *ctx,
VP8_COMP *cpi = (VP8_COMP *)ctx->cpi; VP8_COMP *cpi = (VP8_COMP *)ctx->cpi;
/* Add the frame packet to the list of returned packets. */ /* Add the frame packet to the list of returned packets. */
round = (vpx_codec_pts_t)1000000 round = (vpx_codec_pts_t)10000000
* ctx->cfg.g_timebase.num / 2 - 1; * ctx->cfg.g_timebase.num / 2 - 1;
delta = (dst_end_time_stamp - dst_time_stamp); delta = (dst_end_time_stamp - dst_time_stamp);
pkt.kind = VPX_CODEC_CX_FRAME_PKT; pkt.kind = VPX_CODEC_CX_FRAME_PKT;

Просмотреть файл

@ -824,7 +824,7 @@ static vpx_codec_err_t encoder_encode(vpx_codec_alg_priv_t *ctx,
} }
// Add the frame packet to the list of returned packets. // Add the frame packet to the list of returned packets.
round = (vpx_codec_pts_t)1000000 * ctx->cfg.g_timebase.num / 2 - 1; round = (vpx_codec_pts_t)10000000 * ctx->cfg.g_timebase.num / 2 - 1;
delta = (dst_end_time_stamp - dst_time_stamp); delta = (dst_end_time_stamp - dst_time_stamp);
pkt.kind = VPX_CODEC_CX_FRAME_PKT; pkt.kind = VPX_CODEC_CX_FRAME_PKT;
pkt.data.frame.pts = pkt.data.frame.pts =