Fix logic with stream syncing as the sync offset was not always calculated correctly, which could result in video playback freezing.
Fixed formatting of some tsmf debugging timestamps so they are readable/usabe.
This commit is contained in:
parent
d9754703f4
commit
9b2d5ce849
@ -694,9 +694,9 @@ static BOOL tsmf_gstreamer_decodeEx(ITSMFDecoder* decoder, const BYTE *data, UIN
|
|||||||
* We don't expect to block here often, since the pipeline should
|
* We don't expect to block here often, since the pipeline should
|
||||||
* have more than enough buffering.
|
* have more than enough buffering.
|
||||||
*/
|
*/
|
||||||
DEBUG_TSMF("%s. Start:(%d) End:(%d) Duration:(%d) Last Start:(%d)",
|
DEBUG_TSMF("%s. Start:(%lu) End:(%lu) Duration:(%d) Last Start:(%lu)",
|
||||||
get_type(mdecoder), (int)start_time, (int)end_time, (int)duration,
|
get_type(mdecoder), start_time, end_time, (int)duration,
|
||||||
(int)mdecoder->last_sample_start_time);
|
mdecoder->last_sample_start_time);
|
||||||
|
|
||||||
if (mdecoder->shutdown)
|
if (mdecoder->shutdown)
|
||||||
{
|
{
|
||||||
@ -753,6 +753,8 @@ static BOOL tsmf_gstreamer_decodeEx(ITSMFDecoder* decoder, const BYTE *data, UIN
|
|||||||
|
|
||||||
if (mdecoder->pipeline_start_time_valid)
|
if (mdecoder->pipeline_start_time_valid)
|
||||||
{
|
{
|
||||||
|
DEBUG_TSMF("%s start time %lu", get_type(mdecoder), start_time);
|
||||||
|
|
||||||
/* Adjusted the condition for a seek to be based on start time only
|
/* Adjusted the condition for a seek to be based on start time only
|
||||||
* WMV1 and WMV2 files in particular have bad end time and duration values
|
* WMV1 and WMV2 files in particular have bad end time and duration values
|
||||||
* there seems to be no real side effects of just using the start time instead
|
* there seems to be no real side effects of just using the start time instead
|
||||||
@ -767,9 +769,10 @@ static BOOL tsmf_gstreamer_decodeEx(ITSMFDecoder* decoder, const BYTE *data, UIN
|
|||||||
/* If the start_time is valid and different from the previous start time by more than the seek tolerance, then we have a seek condition */
|
/* If the start_time is valid and different from the previous start time by more than the seek tolerance, then we have a seek condition */
|
||||||
if (((start_time > maxTime) || (start_time < minTime)) && useTimestamps)
|
if (((start_time > maxTime) || (start_time < minTime)) && useTimestamps)
|
||||||
{
|
{
|
||||||
DEBUG_TSMF("tsmf_gstreamer_decodeEx: start_time=[%d] > last_sample_start_time=[%d] OR ", (int)start_time, (int)mdecoder->last_sample_start_time);
|
DEBUG_TSMF("tsmf_gstreamer_decodeEx: start_time=[%lu] > last_sample_start_time=[%lu] OR ", start_time, mdecoder->last_sample_start_time);
|
||||||
DEBUG_TSMF("tsmf_gstreamer_decodeEx: start_time=[%d] < last_sample_start_time=[%d] with", (int)start_time, (int)mdecoder->last_sample_start_time);
|
DEBUG_TSMF("tsmf_gstreamer_decodeEx: start_time=[%lu] < last_sample_start_time=[%lu] with", start_time, mdecoder->last_sample_start_time);
|
||||||
DEBUG_TSMF("tsmf_gstreamer_decodeEX: a tolerance of more than [%d] from the last sample", (int) SEEK_TOLERANCE);
|
DEBUG_TSMF("tsmf_gstreamer_decodeEX: a tolerance of more than [%lu] from the last sample", SEEK_TOLERANCE);
|
||||||
|
DEBUG_TSMF("tsmf_gstreamer_decodeEX: minTime=[%lu] maxTime=[%lu]", minTime, maxTime);
|
||||||
|
|
||||||
mdecoder->seeking = TRUE;
|
mdecoder->seeking = TRUE;
|
||||||
|
|
||||||
@ -781,7 +784,7 @@ static BOOL tsmf_gstreamer_decodeEx(ITSMFDecoder* decoder, const BYTE *data, UIN
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
DEBUG_TSMF("%s start time %d", get_type(mdecoder), start_time);
|
DEBUG_TSMF("%s start time %lu", get_type(mdecoder), start_time);
|
||||||
/* Always set base/start time to 0. Will use seek offset to translate real buffer times
|
/* Always set base/start time to 0. Will use seek offset to translate real buffer times
|
||||||
* back to 0. This allows the video to be started from anywhere and the ability to handle seeks
|
* back to 0. This allows the video to be started from anywhere and the ability to handle seeks
|
||||||
* without rebuilding the pipeline, etc. since that is costly
|
* without rebuilding the pipeline, etc. since that is costly
|
||||||
@ -832,7 +835,7 @@ static BOOL tsmf_gstreamer_decodeEx(ITSMFDecoder* decoder, const BYTE *data, UIN
|
|||||||
{
|
{
|
||||||
DEBUG_TSMF("%s: state=%s", get_type(mdecoder), gst_element_state_get_name(GST_STATE(mdecoder->pipe)));
|
DEBUG_TSMF("%s: state=%s", get_type(mdecoder), gst_element_state_get_name(GST_STATE(mdecoder->pipe)));
|
||||||
|
|
||||||
DEBUG_TSMF("Paused: %i Shutdown: %i Ready: %i", mdecoder->paused, mdecoder->shutdown, mdecoder->ready);
|
DEBUG_TSMF("%s Paused: %i Shutdown: %i Ready: %i", get_type(mdecoder), mdecoder->paused, mdecoder->shutdown, mdecoder->ready);
|
||||||
if (!mdecoder->paused && !mdecoder->shutdown && mdecoder->ready)
|
if (!mdecoder->paused && !mdecoder->shutdown && mdecoder->ready)
|
||||||
tsmf_gstreamer_pipeline_set_state(mdecoder, GST_STATE_PLAYING);
|
tsmf_gstreamer_pipeline_set_state(mdecoder, GST_STATE_PLAYING);
|
||||||
}
|
}
|
||||||
@ -963,9 +966,6 @@ static UINT64 tsmf_gstreamer_get_running_time(ITSMFDecoder* decoder)
|
|||||||
if (!mdecoder->pipe)
|
if (!mdecoder->pipe)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (GST_STATE(mdecoder->pipe) != GST_STATE_PLAYING)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
GstFormat fmt = GST_FORMAT_TIME;
|
GstFormat fmt = GST_FORMAT_TIME;
|
||||||
gint64 pos = 0;
|
gint64 pos = 0;
|
||||||
#if GST_VERSION_MAJOR > 0
|
#if GST_VERSION_MAJOR > 0
|
||||||
|
@ -597,9 +597,9 @@ UINT tsmf_ifman_on_sample(TSMF_IFMAN* ifman)
|
|||||||
if (Stream_GetRemainingLength(ifman->input) < cbData)
|
if (Stream_GetRemainingLength(ifman->input) < cbData)
|
||||||
return ERROR_INVALID_DATA;
|
return ERROR_INVALID_DATA;
|
||||||
|
|
||||||
DEBUG_TSMF("MessageId %d StreamId %d SampleStartTime %d SampleEndTime %d "
|
DEBUG_TSMF("MessageId %d StreamId %d SampleStartTime %lu SampleEndTime %lu "
|
||||||
"ThrottleDuration %d SampleExtensions %d cbData %d",
|
"ThrottleDuration %d SampleExtensions %d cbData %d",
|
||||||
ifman->message_id, StreamId, (int)SampleStartTime, (int)SampleEndTime,
|
ifman->message_id, StreamId, SampleStartTime, SampleEndTime,
|
||||||
(int)ThrottleDuration, SampleExtensions, cbData);
|
(int)ThrottleDuration, SampleExtensions, cbData);
|
||||||
|
|
||||||
presentation = tsmf_presentation_find_by_id(ifman->presentation_id);
|
presentation = tsmf_presentation_find_by_id(ifman->presentation_id);
|
||||||
|
@ -553,8 +553,14 @@ static BOOL tsmf_sample_playback(TSMF_SAMPLE* sample)
|
|||||||
{
|
{
|
||||||
UINT64 video_time = (UINT64) stream->decoder->GetRunningTime(stream->decoder);
|
UINT64 video_time = (UINT64) stream->decoder->GetRunningTime(stream->decoder);
|
||||||
UINT64 audio_time = (UINT64) temp_stream->decoder->GetRunningTime(temp_stream->decoder);
|
UINT64 audio_time = (UINT64) temp_stream->decoder->GetRunningTime(temp_stream->decoder);
|
||||||
sample->start_time += abs(video_time - audio_time) > VIDEO_ADJUST_MAX ? (video_time - audio_time) : VIDEO_ADJUST_MAX;
|
UINT64 max_adjust = VIDEO_ADJUST_MAX;
|
||||||
sample->end_time += abs(video_time - audio_time) > VIDEO_ADJUST_MAX ? (video_time - audio_time) : VIDEO_ADJUST_MAX;
|
|
||||||
|
if (video_time < audio_time)
|
||||||
|
max_adjust = -VIDEO_ADJUST_MAX;
|
||||||
|
|
||||||
|
sample->start_time += abs(video_time - audio_time) < VIDEO_ADJUST_MAX ? (video_time - audio_time) : max_adjust;
|
||||||
|
sample->end_time += abs(video_time - audio_time) < VIDEO_ADJUST_MAX ? (video_time - audio_time) : max_adjust;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user