~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavcodec/h264_mb_template.c

  • Committer: Henrik Rydgård
  • Date: 2014-01-03 10:44:32 UTC
  • Revision ID: git-v1:87c6c126784b1718bfa448ecf2e6a9fef781eb4e
Update our ffmpeg snapshot to a clone of the official repository.

This is because Maxim's at3plus support has been officially merged!

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
            if (SIMPLE || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
139
139
                if (!h->sps.chroma_format_idc) {
140
140
                    for (i = 0; i < 8; i++) {
141
 
                        memset(dest_cb + i*uvlinesize, 1 << (bit_depth - 1), 8);
142
 
                        memset(dest_cr + i*uvlinesize, 1 << (bit_depth - 1), 8);
 
141
                        memset(dest_cb + i * uvlinesize, 1 << (bit_depth - 1), 8);
 
142
                        memset(dest_cr + i * uvlinesize, 1 << (bit_depth - 1), 8);
143
143
                    }
144
144
                } else {
145
145
                    const uint8_t *src_cb = h->intra_pcm_ptr + 256;