Skip to content
Snippets Groups Projects
  1. May 11, 2022
    • Alexandre Janniaux's avatar
      transcode: encoder: avoid format update after open · b04216b2
      Alexandre Janniaux authored and Felix Paul Kühne's avatar Felix Paul Kühne committed
      When the encoder is opened, it cannot change format anymore, and we
      cannot change it behind its back.
      b04216b2
    • Alexandre Janniaux's avatar
      test: transcode: add error checking case · 79902c34
      Alexandre Janniaux authored and Felix Paul Kühne's avatar Felix Paul Kühne committed
      This test scenario for the transcode checks that the error state is
      correctly reported back to the stream output pipeline even if it
      happened asynchronously.
      79902c34
    • Alexandre Janniaux's avatar
      transcode: video: refactor initialization to format update · 8177a1d6
      Alexandre Janniaux authored and Felix Paul Kühne's avatar Felix Paul Kühne committed
      Some decoders are pushing format update synchronously during their
      activation but others have an asynchronous behaviour and may push it
      before their activation function has finished, or even after the first
      decode call when the decoder is asynchronously configured and ready.
      
      Thus, previously, the decoder format from the decoder was not
      necessarily known when opening the filters and the encoder. This
      patchset shifts the initialization of previously mentioned objects to
      the decoder update callback.
      
      In addition, encoders will now need to get the final video context to
      configure and it cannot open correctly without it, so the encoder test
      typically makes no sense anymore for video. In this patch, since we
      create the encoder only when the final format is finally supplied by the
      decoder, we can directly create the encoder that will be used for
      transcoding.
      
      In addition, since format update would still happen at activation for
      the synchronous decoders, the format and encoders will already be
      available, effectively replacing the encoder test afterwards.
      8177a1d6
    • Alexandre Janniaux's avatar
      transcode: video: check before cleaning · 387a691a
      Alexandre Janniaux authored and Felix Paul Kühne's avatar Felix Paul Kühne committed
      In future commits, we'll create the filter chain and encoder as soon as
      the decoder outputs the format it will generate through
      decoder_UpdateVideoOutput. It means that if the decoder doesn't report
      any format, we won't have an encoder anymore.
      387a691a
    • Alexandre Janniaux's avatar
      transcode: handle id->b_error · 7ed34d69
      Alexandre Janniaux authored and Felix Paul Kühne's avatar Felix Paul Kühne committed
      If transcode failed, we want to forward the error to the stream output
      pipeline, so we need to store it for later and to abort the transcoding
      process.
      7ed34d69
    • Alexandre Janniaux's avatar
      transcode: video: move some definition up · b1278274
      Alexandre Janniaux authored and Felix Paul Kühne's avatar Felix Paul Kühne committed
      They will be reused differently when refactoring the initialization
      later at the format update site.
      b1278274
    • Alexandre Janniaux's avatar
      transcode: forward the sout_stream_t object · f84b3212
      Alexandre Janniaux authored and Felix Paul Kühne's avatar Felix Paul Kühne committed
      The object is needed to forward the elementary streams and data to the
      sout stream components following the transcode.
      
      Note that having the stream object here means that we must ensure we
      don't call it after the transcode is supposed to be closed, so we must
      ensure every asynchronous components are drained and destroyed before
      leaving the close functions.
      
      The constraint was already there though, given p_obj actually pointed to
      the p_stream object too.
      f84b3212
    • Alexandre Janniaux's avatar
      transcode: video: use vlc_object_t for debug format · 39fd9245
      Alexandre Janniaux authored and Felix Paul Kühne's avatar Felix Paul Kühne committed
      39fd9245
    • Alexandre Janniaux's avatar
      test: modules: add transcoder test infrastructure · 11ee3d5f
      Alexandre Janniaux authored and Felix Paul Kühne's avatar Felix Paul Kühne committed
      A unit-test for the transcoder code currently is hard to achieve, as it
      involves decoders, encoders, filters, sout_stream_t object, and general
      transcode code.
      
      This commit introduces an integration test which mocks the extern
      components (filters, decoders, encoders) used by the transcode pipeline
      and starts this pipeline using the usual input item properties.
      
      The main goals are to:
       - check whether no part of the stream is dropped.
       - check whether push model with video context is supported everywhere.
       - check the different kind of decoder behaviour, in particular those
         for which decode is asynchronous with the decoder_QueueVideo call,
         those for which Open() is asynchronous with the decoder_UpdateVideo*
         call and their synchronous variants.
       - check memory leaks and use-after-free in the pipeline (through asan).
       - check threading within the pipeline (through tsan).
       - check decoder, encoder and filter loading failure.
       - check format adaptation through filters before the encoder.
       - check format conversion (called final_conv_static) before the
         encoder, needed for encoders requesting a conversion.
      11ee3d5f
    • Alexandre Janniaux's avatar
      transcode: encoder: close encoder with ops · f7be6711
      Alexandre Janniaux authored and Felix Paul Kühne's avatar Felix Paul Kühne committed
      Missing part from 5140b25e.
      f7be6711
    • Rémi Denis-Courmont's avatar
      android: remove reverse NULL check · 24246e4e
      Rémi Denis-Courmont authored and Felix Paul Kühne's avatar Felix Paul Kühne committed
      This code is useless as the window cannot be NULL, and it was already
      optimised out.
      24246e4e
  2. May 10, 2022
  3. May 08, 2022
  4. May 07, 2022
    • Alexandre Janniaux's avatar
      opengl: vout_helper: remove obsolete comment · 32819382
      Alexandre Janniaux authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      vout_display_opengl code has separate prepare() and display(), which
      might or might not match vout_display's prepare()/display() calls, now
      that the opengl swap() is not done by the vout_display_opengl code.
      32819382
    • Alexandre Janniaux's avatar
      opengl: display: move render code to prepare() · 9b7514f9
      Alexandre Janniaux authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      Now that we splitted the vlc_gl_Swap() call from the rendering, there's
      no excuse for starting rendering sooner so that the result starts to be
      available when executing display() and will almost be ready for
      presentation.
      
      is_dirty is there to indicate whether vlc_gl_MakeCurrent failed and thus
      the frame could not be rendered, to avoid swapping undefined content.
      9b7514f9
    • Alexandre Janniaux's avatar
      opengl: move vlc_gl_Swap() to display · f058e234
      Alexandre Janniaux authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      The display code is better suited to execute Swap() than the
      vout_display_opengl object, since:
       - It actually knows whether it's an on-screen or off-screen
         implementation.
       - It could add code to render more things between swapping.
       - In particular, it could render, but discard the rendering instead of
         swapping depending on the time spent or GPU state/chrono.
      f058e234
    • Alexandre Janniaux's avatar
      opengl: display: load glFlush from context · 610c50b1
      Alexandre Janniaux authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      Since the vout display work is splitted between prepare() and display(),
      the flush is useful to ensure everything has been submitted by the end
      of prepare() so that the result can be used in display().
      610c50b1
    • Alexandre Janniaux's avatar
      egl: allow swapping without current context · 61bb9420
      Alexandre Janniaux authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      The vlc_gl_t API doesn't require the context to be current to call
      vlc_gl_Swap(), but EGL needs it. Allowing vlc_gl_Swap from being called
      outside of vlc_gl_MakeCurrent/ReleaseCurrent will allow to remove the
      MakeCurrent/ReleaseCurrent mechanism and have the OpenGL provider pull
      for a frame rendering instead of the code waiting on draw commands for
      OpenGL to be ready to render, which is functionnally the same, but will
      allow implementations like macosx.m or caopengllayer.m to be a real
      OpenGL implementation instead of dummy provider around a display module.
      61bb9420
    • Thomas Guillem's avatar
      tracer: don't print render special values · ad4cb3ac
      Thomas Guillem authored and Rémi Denis-Courmont's avatar Rémi Denis-Courmont committed
      0 and INT64_MAX make the graph difficult to scale.
      ad4cb3ac
    • Thomas Guillem's avatar
      trace: change render arguments order · c9eb4194
      Thomas Guillem authored and Rémi Denis-Courmont's avatar Rémi Denis-Courmont committed
      Use the same order than the clock API (system, then pts).
      c9eb4194
  5. May 06, 2022
Loading