1. 12 9月, 2015 5 次提交
    • W
      mmaldec: fix problems with flush logic · 6b652c02
      wm4 提交于
      Don't try to do a blocking wait for MMAL output if we haven't even sent
      a single real packet, but only flush packets. Obviously we can't expect
      to get anything back.
      
      Additionally, don't send a flush packet to MMAL in the same case. It
      appears the MMAL decoder will sometimes hang in mmal_vc_port_disable()
      (called from ffmmal_close_decoder()), waiting for a reply from the GPU
      which never arrives. Either MMAL disallows sending flush packets without
      preceding real data, or it's a MMAL bug.
      Signed-off-by: NLuca Barbato <lu_zero@gentoo.org>
      6b652c02
    • W
      mmaldec: hack against buffering problems on broken input · b84675d6
      wm4 提交于
      I can't come up with a nice way to handle this. It's hard to keep the
      lock-stepped input/output in this case. You can't predict whether the
      MMAL decoder will output a picture (because it's asynchronous), so
      you have to assume in general that any packet could produce 0 or 1
      frames. You can't continue to write input packets to the decoder,
      because then you might get too many output frames, which you can't
      get rid of because the lavc decoding API does not allow the decoder
      to return an output frame without consuming an input frame (except
      when flushing).
      
      The ideal fix is a M:N decoding API (preferably asynchronous), which
      would make this code potentially much cleaner. For now, this hack
      will do.
      Signed-off-by: NLuca Barbato <lu_zero@gentoo.org>
      b84675d6
    • L
      jpeg2000: Split codeblock decoding from the main tile decoding · 5788623d
      Luca Barbato 提交于
      That loop is completely stand-alone.
      5788623d
    • L
      jpeg2000: Do not warn about known and skippable markers · db53a230
      Luca Barbato 提交于
      Matches the openjpeg behaviour.
      db53a230
    • L
      mmvideo: Make sure the rle does not write over the frame boundaries · 9b5a4a9c
      Luca Barbato 提交于
      Bug-Id: 887
      CC: libav-stable@libav.org
      9b5a4a9c
  2. 10 9月, 2015 4 次提交
  3. 09 9月, 2015 1 次提交
  4. 07 9月, 2015 5 次提交
  5. 06 9月, 2015 2 次提交
  6. 04 9月, 2015 3 次提交
  7. 03 9月, 2015 9 次提交
  8. 01 9月, 2015 2 次提交
  9. 31 8月, 2015 5 次提交
  10. 30 8月, 2015 1 次提交
  11. 28 8月, 2015 3 次提交