Skip to content
Snippets Groups Projects
  1. Apr 20, 2021
    • Alexandre Janniaux's avatar
      89201f24
    • Alexandre Janniaux's avatar
      82f60777
    • Alexandre Janniaux's avatar
      VLCOpenGLES2VideoView: use dedicated CFRunLoop mode · b4c7561c
      Alexandre Janniaux authored
      The vlc_runloop mode is designed to be executed even when an event is
      being reported by the vout_window used, ie when there is a call to
      CFRunLoopInMode(CFRunLoopGetMain(), CFSTR("vlc_runloop"), ..).
      
      By adding the default mode too, it ensures it would run in the normal
      CFRunLoop too.
      
      Async tasks can still be dispatched without the "vlc_runloop" mode but
      every sync task in the display must be done under this mode to prevent
      deadlock from happening between the main thread and the vout_thread.
      
      Fixes #23571
      b4c7561c
    • Alexandre Janniaux's avatar
      VLCOpenGLES2VideoView: enforce initial frame size · e952d4e4
      Alexandre Janniaux authored
      The UIView should have a well-defined size from the start.
      e952d4e4
    • Alexandre Janniaux's avatar
      VLCVideoUIView: signal initial size during the opening · 7f86b3a9
      Alexandre Janniaux authored
      It avoids the display to open with a size bigger than the device's
      screen, which could lead to out-of-memory failures.
      7f86b3a9
    • Alexandre Janniaux's avatar
      VLCVideoUIView: report event in another thread · 14fdbf87
      Alexandre Janniaux authored
      Report events from a different thread than the main thread, and continue
      to execute the main CFRunLoop, but filter the events to only execute
      the ones queued by potential display, ie. those tagged with the mode
      "vlc_runloop".
      
      The vlc_runloop mode is designed to be executed even when an event is
      being reported by the vout_window used, ie. when there is a call to
      CFRunLoopInMode(CFRunLoopGetMain(), CFSTR("vlc_runloop"), ..).
      
      Clients should ensure they also tag their blocks with the default mode
      too. Otherwise, they are likely to never be executed.
      
      Async tasks can still be dispatched without the "vlc_runloop" mode but
      every sync tasks in the display must be done under this mode to prevent
      deadlock from happening between the main thread and the vout_thread,
      typically with the following code:
      
          /* The main loop to run the block into */
          CFRunLoopRef runloop = CFRunLoopGetMain();
      
          /* The modes to execute the block in */
          CFStringRef modes_cfstrings[] = { kCFRunLoopDefaultMode, CFSTR("vlc_runloop") };
          CFArrayRef modes = CFArrayCreate(NULL, (const void **)modes_cfstrings,
                  ARRAY_SIZE(modes_cfstrings), &kCFTypeArrayCallBacks);
      
          CFRunLoopPerformBlock(runloop, modes, ^{
              /* The block content to execute */
          });
      
          /* Don't forget to signal the runloop
          CFRunLoopWakeUp(runloop);
          CFRelease(modes);
      
      To achieve a blocking/sync behaviour, clients can share a binary
      semaphore between the block and the outside of the block. When using a
      vlc_sem_t object, it must be qualified with __block to be modified
      inside of the block.
      
      Refs #23571
      14fdbf87
  2. Apr 19, 2021
  3. Apr 18, 2021
  4. Apr 16, 2021
  5. Apr 15, 2021
  6. Apr 14, 2021
  7. Apr 13, 2021
  8. Apr 12, 2021
Loading