• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching refs:buf_end

479  * @param buf_end the EOF of source byterun1 compressed bitstream
483 const uint8_t *buf, const uint8_t *const buf_end)
487 for (x = 0; x < dst_size && buf < buf_end;) {
491 length = FFMIN3(value + 1, dst_size - x, buf_end - buf);
677 const uint8_t *buf_end = buf + buf_size;
706 for (y = 0; y < avctx->height && buf < buf_end; y++) {
708 decodeplane8(row, buf, FFMIN(s->planesize, buf_end - buf), plane);
719 if (start >= buf_end)
721 decodeplane8(s->ham_buf, start, FFMIN(s->planesize, buf_end - start), plane);
730 for (y = 0; y < avctx->height && buf < buf_end; y++) {
732 memcpy(row, buf, FFMIN(raw_width, buf_end - buf));
744 for (plane = 0; plane < s->bpp && buf < buf_end; plane++) {
745 decodeplane8(row, buf, FFMIN(s->planesize, buf_end - buf), plane);
753 for (plane = 0; plane < s->bpp && buf < buf_end; plane++) {
754 decodeplane8(s->ham_buf, buf, FFMIN(s->planesize, buf_end - buf), plane);
763 for (plane = 0; plane < s->bpp && buf < buf_end; plane++) {
765 FFMIN(s->planesize, buf_end - buf), plane);
772 for (y = 0; y < avctx->height && buf_end > buf; y++) {
774 memcpy(row, buf, FFMIN(avctx->width, buf_end - buf));
778 for (y = 0; y < avctx->height && buf_end > buf; y++) {
780 memcpy(s->ham_buf, buf, FFMIN(avctx->width, buf_end - buf));
795 buf += decode_byterun(s->planebuf, s->planesize, buf, buf_end);
804 buf += decode_byterun(s->planebuf, s->planesize, buf, buf_end);
814 buf += decode_byterun(s->planebuf, s->planesize, buf, buf_end);
824 buf += decode_byterun(s->planebuf, s->planesize, buf, buf_end);
833 buf += decode_byterun(row, avctx->width, buf, buf_end);
838 buf += decode_byterun(s->ham_buf, avctx->width, buf, buf_end);