mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 10:40:05 +08:00
确保加载h264视频转流媒体时间戳精准 (#3691)
This commit is contained in:
parent
66065f5359
commit
6583e2869a
@ -29,9 +29,8 @@ static void on_h264_frame(void *user_data, mk_h264_splitter splitter, const char
|
|||||||
#else
|
#else
|
||||||
usleep(40 * 1000);
|
usleep(40 * 1000);
|
||||||
#endif
|
#endif
|
||||||
static int dts = 0;
|
uint64_t dts = mk_util_get_current_millisecond();
|
||||||
mk_frame frame = mk_frame_create(MKCodecH264, dts, dts, data, size, NULL, NULL);
|
mk_frame frame = mk_frame_create(MKCodecH264, dts, dts, data, size, NULL, NULL);
|
||||||
dts += 40;
|
|
||||||
mk_media_input_frame((mk_media) user_data, frame);
|
mk_media_input_frame((mk_media) user_data, frame);
|
||||||
mk_frame_unref(frame);
|
mk_frame_unref(frame);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user