~ppsspp/ppsspp/ffmpeg-upstream

« back to all changes in this revision

Viewing changes to libavcodec/snow.h

  • Committer: Sérgio Benjamim
  • Date: 2015-07-20 03:55:05 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150720035505-i1jj1zcjcnd0mc7w
Updated to 2.7.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
304
304
    BlockNode *lb= lt+b_stride;
305
305
    BlockNode *rb= lb+1;
306
306
    uint8_t *block[4];
 
307
    // When src_stride is large enough, it is possible to interleave the blocks.
 
308
    // Otherwise the blocks are written sequentially in the tmp buffer.
307
309
    int tmp_step= src_stride >= 7*MB_SIZE ? MB_SIZE : MB_SIZE*src_stride;
308
310
    uint8_t *tmp = s->scratchbuf;
309
311
    uint8_t *ptmp;
347
349
 
348
350
    if(b_w<=0 || b_h<=0) return;
349
351
 
350
 
    av_assert2(src_stride > 2*MB_SIZE + 5);
351
 
 
352
352
    if(!sliced && offset_dst)
353
353
        dst += src_x + src_y*dst_stride;
354
354
    dst8+= src_x + src_y*src_stride;