Ubuntu Pastebin

Paste from fritsch at Tue, 28 Jun 2016 06:41:58 +0000

Download as text
1
2
3
4
int ret = avcodec_send_packet(m_pCodecContext, &avpkt);

  // the new API always consumes entire package
  iBytesUsed = ret < 0 ? - 1 : avpkt.size;
Download as text