Home
last modified time | relevance | path

Searched refs:this_first (Results 1 – 19 of 19) sorted by relevance

/hardware/intel/common/libmix/mix_video/src/
Dmixvideoconfigparamsdec.c224 MixVideoConfigParamsDec *this_first, *this_second; in mix_videoconfigparamsdec_equal() local
232 this_first = MIX_VIDEOCONFIGPARAMSDEC(first); in mix_videoconfigparamsdec_equal()
236 if (this_first->frame_order_mode != this_second->frame_order_mode) { in mix_videoconfigparamsdec_equal()
240 if (this_first->frame_rate_num != this_second->frame_rate_num in mix_videoconfigparamsdec_equal()
241 && this_first->frame_rate_denom in mix_videoconfigparamsdec_equal()
246 if (this_first->picture_width != this_second->picture_width in mix_videoconfigparamsdec_equal()
247 && this_first->picture_height != this_second->picture_height) { in mix_videoconfigparamsdec_equal()
251 if (this_first->raw_format != this_second->raw_format) { in mix_videoconfigparamsdec_equal()
255 if (this_first->rate_control != this_second->rate_control) { in mix_videoconfigparamsdec_equal()
259 if (this_first->mixbuffer_pool_size != this_second->mixbuffer_pool_size) { in mix_videoconfigparamsdec_equal()
[all …]
Dmixvideoconfigparamsenc.c241 MixVideoConfigParamsEnc *this_first, *this_second; in mix_videoconfigparamsenc_equal() local
247 this_first = MIX_VIDEOCONFIGPARAMSENC(first); in mix_videoconfigparamsenc_equal()
251 if (this_first->bitrate != this_second->bitrate) { in mix_videoconfigparamsenc_equal()
255 if (this_first->frame_rate_num != this_second->frame_rate_num) { in mix_videoconfigparamsenc_equal()
259 if (this_first->frame_rate_denom != this_second->frame_rate_denom) { in mix_videoconfigparamsenc_equal()
263 if (this_first->initial_qp != this_second->initial_qp) { in mix_videoconfigparamsenc_equal()
267 if (this_first->min_qp != this_second->min_qp) { in mix_videoconfigparamsenc_equal()
271 if (this_first->intra_period != this_second->intra_period) { in mix_videoconfigparamsenc_equal()
275 if (this_first->picture_width != this_second->picture_width in mix_videoconfigparamsenc_equal()
276 && this_first->picture_height != this_second->picture_height) { in mix_videoconfigparamsenc_equal()
[all …]
Dmixbuffer.c151 MixBuffer *this_first, *this_second; in mix_buffer_equal() local
157 this_first = MIX_BUFFER(first); in mix_buffer_equal()
160 if (this_first->data == this_second->data && this_first->size in mix_buffer_equal()
161 == this_second->size && this_first->token == this_second->token in mix_buffer_equal()
162 && this_first->callback == this_second->callback) { in mix_buffer_equal()
Dmixvideoconfigparamsenc_h264.c202 MixVideoConfigParamsEncH264 *this_first, *this_second; in mix_videoconfigparamsencenc_h264_equal() local
209 this_first = MIX_VIDEOCONFIGPARAMSENC_H264 (first); in mix_videoconfigparamsencenc_h264_equal()
212 if (this_first->basic_unit_size != this_second->basic_unit_size) { in mix_videoconfigparamsencenc_h264_equal()
216 if (this_first->slice_num != this_second->slice_num) { in mix_videoconfigparamsencenc_h264_equal()
220 if (this_first->disable_deblocking_filter_idc != this_second->disable_deblocking_filter_idc) { in mix_videoconfigparamsencenc_h264_equal()
224 if (this_first->delimiter_type != this_second->delimiter_type) { in mix_videoconfigparamsencenc_h264_equal()
Dmixvideoinitparams.c147 MixVideoInitParams *this_first, *this_second; in mix_videoinitparams_equal() local
148 this_first = MIX_VIDEOINITPARAMS(first); in mix_videoinitparams_equal()
152 if (!this_first->display && !this_second->display) { in mix_videoinitparams_equal()
154 } else if (this_first->display && this_second->display) { in mix_videoinitparams_equal()
157 ret = mix_display_equal(this_first->display, this_second->display); in mix_videoinitparams_equal()
Dmixvideorenderparams.c211 MixVideoRenderParams *this_first, *this_second; in mix_videorenderparams_equal() local
217 this_first = MIX_VIDEORENDERPARAMS(first); in mix_videorenderparams_equal()
220 if (mix_display_equal(MIX_DISPLAY(this_first->display), MIX_DISPLAY( in mix_videorenderparams_equal()
221 this_second->display)) && mix_rect_equal(this_first->src_rect, in mix_videorenderparams_equal()
222 this_second->src_rect) && mix_rect_equal(this_first->dst_rect, in mix_videorenderparams_equal()
223 this_second->dst_rect) && this_first->number_of_clipping_rects in mix_videorenderparams_equal()
225 (guchar *) this_first->number_of_clipping_rects, in mix_videorenderparams_equal()
227 this_first->number_of_clipping_rects) == 0) { in mix_videorenderparams_equal()
Dmixvideoconfigparamsenc_mpeg4.c199 MixVideoConfigParamsEncMPEG4 *this_first, *this_second; in mix_videoconfigparamsencenc_mpeg4_equal() local
206 this_first = MIX_VIDEOCONFIGPARAMSENC_MPEG4 (first); in mix_videoconfigparamsencenc_mpeg4_equal()
209 if (this_first->profile_and_level_indication!= this_second->profile_and_level_indication) { in mix_videoconfigparamsencenc_mpeg4_equal()
213 if (this_first->fixed_vop_time_increment!= this_second->fixed_vop_time_increment) { in mix_videoconfigparamsencenc_mpeg4_equal()
217 if (this_first->disable_deblocking_filter_idc != this_second->disable_deblocking_filter_idc) { in mix_videoconfigparamsencenc_mpeg4_equal()
Dmixdisplayx11.c142 MixDisplayX11 *this_first, *this_second; in mix_displayx11_equal() local
144 this_first = MIX_DISPLAYX11(first); in mix_displayx11_equal()
153 if (this_first->display == this_second->display && this_first->drawable in mix_displayx11_equal()
Dmixvideoframe.c224 MixVideoFrame *this_first, *this_second; in mix_videoframe_equal() local
230 this_first = MIX_VIDEOFRAME(first); in mix_videoframe_equal()
234 if (this_first->frame_id == this_second->frame_id in mix_videoframe_equal()
235 && this_first->timestamp == this_second->timestamp in mix_videoframe_equal()
236 && this_first->discontinuity == this_second->discontinuity in mix_videoframe_equal()
237 && this_first->frame_structure == this_second->frame_structure) { in mix_videoframe_equal()
Dmixvideocaps.c171 MixVideoCaps *this_first, *this_second; in mix_videocaps_equal() local
178 this_first = MIX_VIDEOCAPS (first); in mix_videocaps_equal()
182 if (g_strcmp0 (this_first->mix_caps, this_second->mix_caps) == 0 in mix_videocaps_equal()
183 && g_strcmp0 (this_first->video_hw_caps, in mix_videocaps_equal()
Dmixbufferpool.c176 MixBufferPool *this_first, *this_second; in mix_bufferpool_equal() local
185 this_first = MIX_BUFFERPOOL(first); in mix_bufferpool_equal()
189 if (this_first->free_list == this_second->free_list in mix_bufferpool_equal()
190 && this_first->in_use_list == this_second->in_use_list in mix_bufferpool_equal()
191 && this_first->free_list_max_size in mix_bufferpool_equal()
193 && this_first->high_water_mark == this_second->high_water_mark) { in mix_bufferpool_equal()
Dmixsurfacepool.c178 MixSurfacePool *this_first, *this_second; in mix_surfacepool_equal() local
187 this_first = MIX_SURFACEPOOL(first); in mix_surfacepool_equal()
191 if (this_first->free_list == this_second->free_list in mix_surfacepool_equal()
192 && this_first->in_use_list == this_second->in_use_list in mix_surfacepool_equal()
193 && this_first->free_list_max_size in mix_surfacepool_equal()
195 && this_first->free_list_cur_size in mix_surfacepool_equal()
197 && this_first->high_water_mark == this_second->high_water_mark) { in mix_surfacepool_equal()
Dmixdrmparams.c155 MixDrmParams *this_first, *this_second; in mix_drmparams_equal() local
162 this_first = MIX_DRMPARAMS (first); in mix_drmparams_equal()
Dmixvideoconfigparamsdec_vc1.c163 MixVideoConfigParamsDecVC1 *this_first, *this_second; in mix_videoconfigparamsdec_vc1_equal() local
170 this_first = MIX_VIDEOCONFIGPARAMSDEC_VC1(first); in mix_videoconfigparamsdec_vc1_equal()
Dmixvideoconfigparamsdec_h264.c185 MixVideoConfigParamsDecH264 *this_first, *this_second; in mix_videoconfigparamsdec_h264_equal() local
192 this_first = MIX_VIDEOCONFIGPARAMSDEC_H264 (first); in mix_videoconfigparamsdec_h264_equal()
Dmixvideoconfigparamsenc_preview.c190 MixVideoConfigParamsEncPreview *this_first, *this_second; in mix_videoconfigparamsencenc_preview_equal() local
197 this_first = MIX_VIDEOCONFIGPARAMSENC_PREVIEW (first); in mix_videoconfigparamsencenc_preview_equal()
Dmixvideoencodeparams.c142 MixVideoEncodeParams *this_first, *this_second; in mix_videoencodeparams_equal() local
148 this_first = MIX_VIDEOENCODEPARAMS(first); in mix_videoencodeparams_equal()
Dmixvideodecodeparams.c142 MixVideoDecodeParams *this_first, *this_second; in mix_videodecodeparams_equal() local
148 this_first = MIX_VIDEODECODEPARAMS(first); in mix_videodecodeparams_equal()
Dmixvideoconfigparamsdec_mp42.c178 MixVideoConfigParamsDecMP42 *this_first, *this_second; in mix_videoconfigparamsdec_mp42_equal() local
185 this_first = MIX_VIDEOCONFIGPARAMSDEC_MP42(first); in mix_videoconfigparamsdec_mp42_equal()