Skip to content

Commit

Permalink
[video_player_avplay] Remove set looping failed message (#681)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaowei-guan authored May 10, 2024
1 parent 56461df commit d583aa6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/video_player_avplay/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

* Add notes for creating dash player.
* [Dash] Fix no EOS event of dashplayer.
* Remove set looping failed message.

## 0.4.1

Expand Down
2 changes: 1 addition & 1 deletion packages/video_player_avplay/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,4 @@ This plugin has the following limitations.
- The `setPlaybackSpeed` method will fail if triggered within the last 3 seconds of the video.
- The playback speed will reset to 1.0 when the video is replayed in loop mode.
- The `seekTo` method works only when the playback speed is 1.0, and it sets the video position to the nearest keyframe, not the exact value passed.
-
- The `setLooping` method only works when the player's DataSourceType is DataSourceType.asset.
2 changes: 1 addition & 1 deletion packages/video_player_avplay/tizen/src/plus_player.cc
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ bool PlusPlayer::Pause() {

bool PlusPlayer::SetLooping(bool is_looping) {
LOG_ERROR("[PlusPlayer] Not support to set looping.");
return false;
return true;
}

bool PlusPlayer::SetVolume(double volume) {
Expand Down

0 comments on commit d583aa6

Please sign in to comment.