~ppsspp/ppsspp/ffmpeg-upstream

« back to all changes in this revision

Viewing changes to libswscale/swscale_unscaled.c

  • 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:
1243
1243
    if ((dstFormat == AV_PIX_FMT_RGB32_1 || dstFormat == AV_PIX_FMT_BGR32_1) && !isRGBA32(srcFormat) && ALT32_CORR<0)
1244
1244
        return NULL;
1245
1245
 
 
1246
    // Maintain symmetry between endianness
 
1247
    if (c->flags & SWS_BITEXACT)
 
1248
        if ((dstFormat == AV_PIX_FMT_RGB32   || dstFormat == AV_PIX_FMT_BGR32  ) && !isRGBA32(srcFormat) && ALT32_CORR>0)
 
1249
            return NULL;
 
1250
 
1246
1251
    return conv;
1247
1252
}
1248
1253