OSDN Git Service

eab69ab0b01c1e32ac594fa0fe7c28f400664c81
[android-x86/hardware-intel-common-vaapi.git] / src / i965_encoder.h
1 /*
2  * Copyright © 2010 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sub license, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial portions
14  * of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
19  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
20  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  *
24  * Authors:
25  *    Zhou chang <chang.zhou@intel.com>
26  *
27  */
28
29 #ifndef _I965_ENCODER_H_
30 #define _I965_ENCODER_H_
31
32 #include <drm.h>
33 #include <i915_drm.h>
34 #include <intel_bufmgr.h>
35
36 #include "i965_structs.h"
37 #include "i965_drv_video.h"
38
39 #define I965_BRC_NONE                   0
40 #define I965_BRC_CBR                    1
41 #define I965_BRC_VBR                    2
42 #define I965_BRC_CQP                    3
43
44 #define WIDTH_IN_MACROBLOCKS(width)     (ALIGN(width, 16) >> 4)
45 #define HEIGHT_IN_MACROBLOCKS(height)   (ALIGN(height, 16) >> 4)
46 #define MAX_TEMPORAL_LAYERS         4
47
48 struct intel_roi {
49     short left;
50     short right;
51     short top;
52     short bottom;
53
54     char  value;
55 };
56
57 struct intel_fraction {
58     unsigned int num;
59     unsigned int den;
60 };
61
62 struct intel_encoder_context {
63     struct hw_context base;
64     int codec;
65     VASurfaceID input_yuv_surface;
66     unsigned int rate_control_mode;
67     unsigned int quality_level;
68     unsigned int quality_range;
69     unsigned int num_frames_in_sequence;
70     unsigned int frame_width_in_pixel;
71     unsigned int frame_height_in_pixel;
72     unsigned int max_slice_or_seg_num;
73
74     struct {
75         unsigned int num_layers;
76         unsigned int size_frame_layer_ids;
77         unsigned int frame_layer_ids[32];
78         unsigned int curr_frame_layer_id;
79     } layer;
80
81     struct {
82         unsigned short gop_size;
83         unsigned short num_iframes_in_gop;
84         unsigned short num_pframes_in_gop;
85         unsigned short num_bframes_in_gop;
86         unsigned int bits_per_second[MAX_TEMPORAL_LAYERS];
87         struct intel_fraction framerate[MAX_TEMPORAL_LAYERS];
88         unsigned int mb_rate_control[MAX_TEMPORAL_LAYERS];
89         unsigned int target_percentage[MAX_TEMPORAL_LAYERS];
90         unsigned int hrd_buffer_size;
91         unsigned int hrd_initial_buffer_fullness;
92         unsigned int window_size;
93         unsigned int initial_qp;
94         unsigned int min_qp;
95         unsigned int need_reset;
96
97         unsigned int num_roi;
98         unsigned int roi_max_delta_qp;
99         unsigned int roi_min_delta_qp;
100         unsigned int roi_value_is_qp_delta;
101         struct intel_roi roi[I965_MAX_NUM_ROI_REGIONS];
102     } brc;
103
104     void *vme_context;
105     void *mfc_context;
106     void *enc_priv_state;
107
108     unsigned int is_tmp_id: 1;
109     unsigned int low_power_mode: 1;
110     unsigned int soft_batch_force: 1;
111     unsigned int context_roi: 1;
112     unsigned int is_new_sequence: 1; /* Currently only valid for H.264, TODO for other codecs */
113
114     void (*vme_context_destroy)(void *vme_context);
115     VAStatus(*vme_pipeline)(VADriverContextP ctx,
116                             VAProfile profile,
117                             struct encode_state *encode_state,
118                             struct intel_encoder_context *encoder_context);
119     void (*mfc_context_destroy)(void *mfc_context);
120     VAStatus(*mfc_pipeline)(VADriverContextP ctx,
121                             VAProfile profile,
122                             struct encode_state *encode_state,
123                             struct intel_encoder_context *encoder_context);
124     void (*mfc_brc_prepare)(struct encode_state *encode_state,
125                             struct intel_encoder_context *encoder_context);
126
127     VAStatus(*get_status)(VADriverContextP ctx,
128                           struct intel_encoder_context *encoder_context,
129                           struct i965_coded_buffer_segment *coded_buffer_segment);
130 };
131
132 extern struct hw_context *
133 gen75_enc_hw_context_init(VADriverContextP ctx, struct object_config *obj_config);
134
135 extern struct hw_context *
136 gen8_enc_hw_context_init(VADriverContextP ctx, struct object_config *obj_config);
137
138 extern struct hw_context *
139 gen9_enc_hw_context_init(VADriverContextP ctx, struct object_config *obj_config);
140 #endif  /* _I965_ENCODER_H_ */
141
142