We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd8242e commit 6bb6514Copy full SHA for 6bb6514
packages/video_player_avplay/tizen/src/plus_player.cc
@@ -139,6 +139,10 @@ int64_t PlusPlayer::Create(const std::string &uri,
139
140
int64_t start_position = flutter_common::GetValue(
141
create_message.player_options(), "startPosition", (int64_t)0);
142
+ if (start_position == 0) {
143
+ start_position = flutter_common::GetValue(create_message.player_options(),
144
+ "startPosition", (int32_t)0);
145
+ }
146
if (start_position > 0) {
147
LOG_INFO("[PlusPlayer] Start position: %lld", start_position);
148
if (!Seek(player_, start_position)) {
0 commit comments