Skip to content
Snippets Groups Projects
  1. Dec 21, 2022
  2. Dec 20, 2022
  3. Dec 19, 2022
  4. Dec 18, 2022
  5. Dec 17, 2022
    • Alaric Senat's avatar
      transcode: handle first-PCR issues · 37f12716
      Alaric Senat authored and François Cartegnie's avatar François Cartegnie committed
      Previously, we fast-forwarded the PCR values no matter what. This used
      to be handy but caused plausible invalid PCR as the fast-forwarded first
      PCRs values can't be checked against future encoded DTS.
      
      This patch approach the problem by synthesizing the first PCR as
      `VLC_TICK_0` to ensure no following DTS is lower and still giving a
      starting point of the stream to the next modules. We also avoid
      forwarding PCR values before any input is signaled to the `pcr_sync`
      utility, to avoid the exact same issue talked above.
      37f12716
    • Alaric Senat's avatar
      transcode: forward PCR if no track is transcoding · aca20342
      Alaric Senat authored and François Cartegnie's avatar François Cartegnie committed
      As the pcr_sync utility should not be used in that case. The pcr_helper
      and pcr_sync tools are only signaled frames from tracks that are
      transcoded.
      This allow a normal PCR flow when transcoding effectively does nothing.
      aca20342
    • Alaric Senat's avatar
      tests: pcr_sync: add a complex test with two tracks · be8a27ef
      Alaric Senat authored and François Cartegnie's avatar François Cartegnie committed
      Mimicking a classic audio/video transcoding scenario.
      be8a27ef
    • Alaric Senat's avatar
      transcode: pcr_sync: record last pcr events in es data · 9cf8b5bd
      Alaric Senat authored and François Cartegnie's avatar François Cartegnie committed
      Recording the current PCR event being treated by each ES allow to
      support tracks being processed far slower than the others.
      A typical example is transcoding both video and audio. The video
      pipeline will be significantly slower than the audio one causing PCR
      events audio-side being reached and marked as "passed" in advance
      relatively to the video ones.
      
      By keeping track of the current pcr_event being treated in each ES
      metadata, each track is now able to be processed independently from the
      others while having the PCR output of the pcr_sync utility still valid
      and consistent.
      
      This patch also removes the previous method that was both flawed (using
      the invalid `last_dts == VLC_TICK_INVALID` as a triggering condition)
      and CPU intensive (crawling up the pcr_events list to check the DTS
      every time).
      9cf8b5bd
    • Alaric Senat's avatar
      transcode: pcr_sync: add forgotten check · 33d785bb
      Alaric Senat authored and François Cartegnie's avatar François Cartegnie committed
      We must check that the es recorded dts before the pcr has already been
      reached by a previous frame output before decreasing the number of es
      still holding a non-reached dts.
      33d785bb
    • Alaric Senat's avatar
      transcode: pcr_sync: add a list access helper · 26991374
      Alaric Senat authored and François Cartegnie's avatar François Cartegnie committed
      Wrap up the very verbose vlc_list accessor to only have to pass head
      around.
      26991374
    • Alaric Senat's avatar
      test: pcr_sync: fix file title · a0d3c822
      Alaric Senat authored and François Cartegnie's avatar François Cartegnie committed
      a0d3c822
    • Alaric Senat's avatar
      test: pcr_sync: add fast-forwarding unit tests · 27983e0a
      Alaric Senat authored and François Cartegnie's avatar François Cartegnie committed
      27983e0a
    • Alaric Senat's avatar
      transcode: pcr_sync: change the PCR fast-forwarding · 8ff9f025
      Alaric Senat authored and François Cartegnie's avatar François Cartegnie committed
      Fast-forwarding a PCR means that the pcr_sync immediately tells the API
      user that he can send it in the case there is no frame currently being
      watched.
      This happen in three scenarios:
        - The first SetPCR call is always fast-forwarded because no data
          should have entered the pcr_sync yet.
        - The stream has a "data-hole" and no frames enters it (most usual
          case being subtitles) while PCR keeps coming. This ensure PCR values
          are still forwarded even when the frame queue is empty.
        - The encoder has no delay. Ie: A frame is immediately encoded and
          returned. All PCR values must then be forwarded.
      
      The last point here wasn't handled correctly due to bad implementation
      and was a blocker for no-delay encoder (subtitles or some audio ones).
      
      Now, we check if the frame input and output are on the same page before
      queuing a PCR event and if it's the case, the PCR value is simply
      fast-forwarded.
      
      A following commit will add test cases for this usage.
      8ff9f025
    • Alaric Senat's avatar
      test: pcr_sync: assert no fast-forward happens in generic tests · 4a737f61
      Alaric Senat authored and François Cartegnie's avatar François Cartegnie committed
      4a737f61
    • Alaric Senat's avatar
      transcode: pcr_sync: watch frame output DTS · 97a66c84
      Alaric Senat authored and François Cartegnie's avatar François Cartegnie committed
      This has become necessary to properly determine if all the frames have
      been output and whether to fast forward a PCR value or not.
      97a66c84
Loading