Commit 316c72a4 authored by Max Kellermann's avatar Max Kellermann

DecoderAPI: add decoder_seek_where_ms()

Move to fixed-point integers instead of floating point.
parent 9da88eec
......@@ -220,6 +220,23 @@ double decoder_seek_where(gcc_unused Decoder & decoder)
return dc.seek_where;
}
unsigned
decoder_seek_where_ms(Decoder &decoder)
{
const DecoderControl &dc = decoder.dc;
assert(dc.pipe != nullptr);
if (decoder.initial_seek_running)
return dc.start_ms;
assert(dc.command == DecoderCommand::SEEK);
decoder.seeking = true;
return unsigned(dc.seek_where * 1000);
}
void decoder_seek_error(Decoder & decoder)
{
DecoderControl &dc = decoder.dc;
......
......@@ -89,6 +89,16 @@ double
decoder_seek_where(Decoder &decoder);
/**
* Call this when you have received the DecoderCommand::SEEK command.
*
* @param decoder the decoder object
* @return the destination position for the seek in milliseconds
*/
gcc_pure
unsigned
decoder_seek_where_ms(Decoder &decoder);
/**
* Call this instead of decoder_command_finished() when seeking has
* failed.
*
......
......@@ -61,6 +61,12 @@ decoder_seek_where(gcc_unused Decoder &decoder)
return 1.0;
}
unsigned
decoder_seek_where_ms(gcc_unused Decoder &decoder)
{
return 1;
}
void
decoder_seek_error(gcc_unused Decoder &decoder)
{
......
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