search for: is8274

Displaying 1 result from an estimated 1 matches for "is8274".

Did you mean: 138274
2013 Jul 29
2
[PATCH 1/2] nv30: hook up PMPEG support via nouveau_video, enables XvMC to work
...(dec, mb, FALSE); nouveau_vpe_mb_dct_header(dec, mb, FALSE); } - if (dec->base.entrypoint <= PIPE_VIDEO_ENTRYPOINT_IDCT) - nouveau_vpe_mb_dct_blocks(dec, mb); - else + if (dec->base.entrypoint <= PIPE_VIDEO_ENTRYPOINT_IDCT) { + if (dec->is8274) + nouveau_vpe_mb_dct_blocks_84(dec, mb); + else + nouveau_vpe_mb_dct_blocks_31(dec, mb); + } else { nouveau_vpe_mb_data_blocks(dec, mb); + } } } @@ -528,6 +557,8 @@ nouveau_create_decoder(struct pipe_context *context, goto vl; if...