blob: aa64b854ac44c95df4968f833817508a9f97e48b [file] [log] [blame]
Hamsalekha S8d3d3032015-03-13 21:24:58 +05301/******************************************************************************
2 *
3 * Copyright (C) 2015 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *****************************************************************************
18 * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore
19*/
20#ifndef _IH264D_TRANSFER_ADDRESS_H_
21#define _IH264D_TRANSFER_ADDRESS_H_
22
23typedef struct
24{
25 UWORD8 *pu1_src_y;
26 UWORD8 *pu1_src_u;
27 UWORD8 *pu1_src_v;
28 UWORD8 *pu1_dest_y;
29 UWORD8 *pu1_dest_u;
30 UWORD8 *pu1_dest_v;
31 UWORD32 u4_inc_y[2];
32 UWORD32 u4_inc_uv[2];
33 UWORD16 u2_frm_wd_y;
34 UWORD16 u2_frm_wd_uv;
35 UWORD8 *pu1_mb_y;
36 UWORD8 *pu1_mb_u;
37 UWORD8 *pu1_mb_v;
38 UWORD16 u2_mv_left_inc;
39 UWORD16 u2_mv_top_left_inc;
40 UWORD32 u4_y_inc;
41 UWORD32 u4_uv_inc;
42
43} tfr_ctxt_t;
44
45#endif