Browse Source

允许进度条更新,不做限制

gavin.chen 1 month ago
parent
commit
b75fc23ae5
2 changed files with 14 additions and 14 deletions
  1. 13 13
      lib/async_vid/shell/reader.dart
  2. 1 1
      lib/async_vid/vid_data.dart

+ 13 - 13
lib/async_vid/shell/reader.dart

@@ -40,7 +40,7 @@ class AsyncShellVidDataReader extends AsyncVidDataReaderBase {
         setError(true, 'Get image count is 0.');
         return;
       }
-      await fetchFrames(0, 1, isNeedReload: true);
+      await fetchFrames(0, 1, isNeedReload: false);
       if (imageCount == null) {
         setError(true, 'Get image count fail.');
         return;
@@ -189,18 +189,18 @@ class AsyncShellVidDataReader extends AsyncVidDataReaderBase {
       appendFrame(frame, index);
       print("appendFrame ${frame.length} index: $index");
       //非空,且之前没有中断,则允许更新进度
-      if (frame.isNotEmpty) {
-        if (!_isBreak) {
-          if (_isStop) {
-            return false;
-          }
-          updateProgress(index / _imageCount);
-        }
-      } else {
-        //如果遇到获取不到帧,则中断更新进度
-        print('updateProgress isBreak true');
-        _isBreak = true;
-      }
+      // if (frame.isNotEmpty) {
+      //   if (!_isBreak) {
+      //     if (_isStop) {
+      //       return false;
+      //     }
+      //   }
+      // } else {
+      //   //如果遇到获取不到帧,则中断更新进度
+      //   print('updateProgress isBreak true');
+      //   _isBreak = true;
+      // }
+      updateProgress(index / _imageCount);
       index++;
     }
     //base64Decode

+ 1 - 1
lib/async_vid/vid_data.dart

@@ -270,7 +270,7 @@ abstract class AsyncVidImageDataBase {
           imageData = _reader.getImageBytes(index);
           if (imageData.isEmpty) {
             // _reader.skipToFrame(index);
-            throw Exception("Can not find image Data");
+            throw NotReadyException();
           }
         } else {
           imageData = _reader.readBytes(_imagePositionList[index]);