~ubuntu-branches/ubuntu/utopic/libva/utopic

« back to all changes in this revision

Viewing changes to i965_drv_video/shaders/post_processing/Common/IMC3_Load_9x5.asm

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler, Reinhard Tartler, Brandon Snider, Matteo F. Vescovi
  • Date: 2012-01-04 20:42:33 UTC
  • mfrom: (3.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20120104204233-ykz9w51jafx66if5
Tags: 1.0.15-1
[ Reinhard Tartler ]
* Imported Upstream version 1.0.15 (Closes: #654567)
* Bump shlibs for API 'fixes' mentioned in upstream NEWS file

[ Brandon Snider ]
* The intel i965 driver has been moved to its own package
  - Removed i965-va-driver package from debian/control and replaced it
    with libva-egl1 package
* refreshed debian/patches/remove-unneeded-dep2.patch
* refreshed debian/patches/remove-unneeded-dep.patch
* Added depends on libva-egl1 to debian/control
* Added libva-utils package to debian/control
* Added egl.so file to debian/libva-dev.install
* Created debian/libva-utils.install

[ Matteo F. Vescovi ]
* debian/control: bump Standards-Version to 3.9.2
* debian/clean: clean upstream after build
* debian/control: "Section:" field re-positioned
* debian/control: adding myself to "Uploaders:" field
* debian/control: VCS-browser link updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * All Video Processing kernels 
3
 
 * Copyright © <2010>, Intel Corporation.
4
 
 *
5
 
 * This program is licensed under the terms and conditions of the
6
 
 * Eclipse Public License (EPL), version 1.0.  The full text of the EPL is at
7
 
 * http://www.opensource.org/licenses/eclipse-1.0.php.
8
 
 *
9
 
 */
10
 
 
11
 
// Module name: IMC3_Load_9x5.asm
12
 
//
13
 
//----------------------------------------------------------------
14
 
//  This module loads 16x8 Y, 9x5 U and 9x5 V planar data blocks for CSC module
15
 
//      and stores it in byte-aligned format.
16
 
//----------------------------------------------------------------
17
 
 
18
 
#define  IMC3_LOAD_9x5
19
 
#include "PL3_Load.inc"
20
 
 
21
 
// Load 16x8 planar Y ----------------------------------------------------------
22
 
    add  (2) rMSGSRC.0<1>:d     wORIX<2;2,1>:w    wSRC_H_ORI_OFFSET<2;2,1>:w       // Source Y Block origin
23
 
#if !defined(LOAD_UV_ONLY)
24
 
    mov  (1) rMSGSRC.2<1>:ud    nDPR_BLOCK_SIZE_Y:ud                               // Block width and height (16x8)
25
 
 
26
 
    mov  (8) mMSGHDRY<1>:ud     rMSGSRC<8;8,1>:ud
27
 
    send (8) udSRC_Y(0)<1>      mMSGHDRY    udDUMMY_NULL    nDATAPORT_READ    nDPMR_MSGDSC+nDPR_MSG_SIZE_Y+nBI_CURRENT_SRC_Y:ud
28
 
#endif
29
 
 
30
 
// Load 9x5 planar U and V -----------------------------------------------------
31
 
    asr (2)  rMSGSRC.0<1>:d     rMSGSRC.0<2;2,1>:d       1:w   // U/V block origin should be half of Y's
32
 
    mov (1)  rMSGSRC.2<1>:ud    nDPR_BLOCK_SIZE_UV:ud          // U/V block width and height (12x5)
33
 
 
34
 
    mov  (8) mMSGHDRU<1>:ud     rMSGSRC<8;8,1>:ud
35
 
    send (8) udSRC_U(0)<1>      mMSGHDRU    udDUMMY_NULL    nDATAPORT_READ    nDPMR_MSGDSC+nDPR_MSG_SIZE_UV+nBI_CURRENT_SRC_U:ud
36
 
    mov  (8) mMSGHDRV<1>:ud     rMSGSRC<8;8,1>:ud
37
 
    send (8) udSRC_V(0)<1>      mMSGHDRU    udDUMMY_NULL    nDATAPORT_READ    nDPMR_MSGDSC+nDPR_MSG_SIZE_UV+nBI_CURRENT_SRC_V:ud
38
 
 
39
 
// Convert to word-aligned format ----------------------------------------------
40
 
#if !defined(LOAD_UV_ONLY)
41
 
    $for (nY_NUM_OF_ROWS-1; >-1; -1) {
42
 
        mov (16)  uwDEST_Y(0,%1*16)<1>         ubSRC_Y(0,%1*16)
43
 
    }
44
 
#endif
45
 
    $for(nUV_NUM_OF_ROWS-2; >-1; -1) {
46
 
        mov (16)  uwDEST_U(0, %1*16)<1>        ubSRC_U(0, %1*16)
47
 
        mov (16)  uwDEST_V(0, %1*16)<1>        ubSRC_V(0, %1*16)
48
 
    }
49
 
 
50
 
// End of IMC3_Load_9x5