1. 14 Jun, 2020 23 commits
  2. 11 Jun, 2020 1 commit
    • Anton Khirnov's avatar
      pthread_frame: change the way delay is set · 569a9d3d
      Anton Khirnov authored
      It is a constant known at codec init, so set it in
      ff_frame_thread_init(). Also, only set it for video, since the meaning
      of this field is not well-defined for audio with frame threading.
      
      Fixes availability of delay in callbacks invoked from the per-thread
      contexts after 1f4cf92c.
      
      (cherry picked from commit 6943ab688d0c75dbab3222b5b80457ab72a0615f)
      569a9d3d
  3. 09 Jun, 2020 1 commit
  4. 08 Jun, 2020 14 commits
  5. 07 Jun, 2020 1 commit
    • Andreas Rheinhardt's avatar
      avcodec/v4l2_m2m_enc: Avoid ;; · d29aaf12
      Andreas Rheinhardt authored
      Inside a function, the second ; in a double ;; is a null statement, but
      outside of functions a double ;; is simply invalid C that compilers
      happen to accept. v4l2_m2m_enc.c contained several ;; as a result of
      macro-expansion. So change the underlying macro so that it doesn't
      happen any longer.
      
      This fixes warnings when compiling with -pedantic: "ISO C does not allow
      extra ‘;’ outside of a function".
      Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
      d29aaf12