/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_ssim.c | 96 double vp9_calc_ssim(YV12_BUFFER_CONFIG *source, YV12_BUFFER_CONFIG *dest, in vp9_calc_ssim() argument 101 a = vp9_ssim2(source->y_buffer, dest->y_buffer, in vp9_calc_ssim() 102 source->y_stride, dest->y_stride, in vp9_calc_ssim() 103 source->y_crop_width, source->y_crop_height); in vp9_calc_ssim() 105 b = vp9_ssim2(source->u_buffer, dest->u_buffer, in vp9_calc_ssim() 106 source->uv_stride, dest->uv_stride, in vp9_calc_ssim() 107 source->uv_crop_width, source->uv_crop_height); in vp9_calc_ssim() 109 c = vp9_ssim2(source->v_buffer, dest->v_buffer, in vp9_calc_ssim() 110 source->uv_stride, dest->uv_stride, in vp9_calc_ssim() 111 source->uv_crop_width, source->uv_crop_height); in vp9_calc_ssim() [all …]
|
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/ |
D | frameparser.cpp | 144 int frame_parse::parse_sc_frame ( OMX_BUFFERHEADERTYPE *source, in parse_sc_frame() argument 153 if (source == NULL || dest == NULL || partialframe == NULL) { in parse_sc_frame() 159 psource = source->pBuffer + source->nOffset; in parse_sc_frame() 161 source_len = source->nFilledLen; in parse_sc_frame() 168 if (source_len == 0 && (source->nFlags & 0x01)) { in parse_sc_frame() 181 dest->nFlags = source->nFlags; in parse_sc_frame() 182 dest->nTimeStamp = source->nTimeStamp; in parse_sc_frame() 207 while ( source->nFilledLen > 0 && parse_state != A0 in parse_sc_frame() 216 source->nFilledLen--; in parse_sc_frame() 217 source->nOffset++; in parse_sc_frame() [all …]
|
/hardware/qcom/media/mm-video-legacy/vidc/vdec/src/ |
D | frameparser.cpp | 144 int frame_parse::parse_sc_frame ( OMX_BUFFERHEADERTYPE *source, in parse_sc_frame() argument 153 if (source == NULL || dest == NULL || partialframe == NULL) in parse_sc_frame() 160 psource = source->pBuffer + source->nOffset; in parse_sc_frame() 162 source_len = source->nFilledLen; in parse_sc_frame() 169 if (source_len == 0 && (source->nFlags & 0x01)) in parse_sc_frame() 183 dest->nFlags = source->nFlags; in parse_sc_frame() 184 dest->nTimeStamp = source->nTimeStamp; in parse_sc_frame() 210 while ( source->nFilledLen > 0 && parse_state != A0 in parse_sc_frame() 220 source->nFilledLen--; in parse_sc_frame() 221 source->nOffset++; in parse_sc_frame() [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | ssim.c | 176 YV12_BUFFER_CONFIG *source, in vp8_calc_ssim() argument 185 a = vp8_ssim2(source->y_buffer, dest->y_buffer, in vp8_calc_ssim() 186 source->y_stride, dest->y_stride, source->y_width, in vp8_calc_ssim() 187 source->y_height); in vp8_calc_ssim() 189 b = vp8_ssim2(source->u_buffer, dest->u_buffer, in vp8_calc_ssim() 190 source->uv_stride, dest->uv_stride, source->uv_width, in vp8_calc_ssim() 191 source->uv_height); in vp8_calc_ssim() 193 c = vp8_ssim2(source->v_buffer, dest->v_buffer, in vp8_calc_ssim() 194 source->uv_stride, dest->uv_stride, source->uv_width, in vp8_calc_ssim() 195 source->uv_height); in vp8_calc_ssim() [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/ |
D | gen_scalers.c | 36 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, in vp8_horizontal_line_5_4_scale_c() argument 43 const unsigned char *src = source; in vp8_horizontal_line_5_4_scale_c() 67 void vp8_vertical_band_5_4_scale_c(unsigned char *source, in vp8_vertical_band_5_4_scale_c() argument 75 unsigned char *src = source; in vp8_vertical_band_5_4_scale_c() 117 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, in vp8_horizontal_line_5_3_scale_c() argument 124 const unsigned char *src = source; in vp8_horizontal_line_5_3_scale_c() 145 void vp8_vertical_band_5_3_scale_c(unsigned char *source, in vp8_vertical_band_5_3_scale_c() argument 153 unsigned char *src = source; in vp8_vertical_band_5_3_scale_c() 192 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, in vp8_horizontal_line_2_1_scale_c() argument 199 const unsigned char *src = source; in vp8_horizontal_line_2_1_scale_c() [all …]
|
D | vpx_scale.c | 66 const unsigned char *source, in scale1d_2t1_i() argument 83 dest[0] = source[0]; in scale1d_2t1_i() 87 temp += 3 * source[j - source_pitch]; in scale1d_2t1_i() 88 temp += 10 * source[j]; in scale1d_2t1_i() 89 temp += 3 * source[j + source_pitch]; in scale1d_2t1_i() 120 const unsigned char *source, in scale1d_2t1_ps() argument 139 dest[i] = source[j]; in scale1d_2t1_ps() 166 const unsigned char *source, in scale1d_c() argument 179 unsigned char left_pixel = *source; in scale1d_c() 180 unsigned char right_pixel = *(source + source_step); in scale1d_c() [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/ |
D | vpx_scale_rtcd.pl | 10 …add_proto qw/void vp8_horizontal_line_5_4_scale/, "const unsigned char *source, unsigned int sourc… 11 …add_proto qw/void vp8_vertical_band_5_4_scale/, "unsigned char *source, unsigned int src_pitch, un… 12 …add_proto qw/void vp8_horizontal_line_5_3_scale/, "const unsigned char *source, unsigned int sourc… 13 …add_proto qw/void vp8_vertical_band_5_3_scale/, "unsigned char *source, unsigned int src_pitch, un… 14 …add_proto qw/void vp8_horizontal_line_2_1_scale/, "const unsigned char *source, unsigned int sourc… 15 …add_proto qw/void vp8_vertical_band_2_1_scale/, "unsigned char *source, unsigned int src_pitch, un… 16 …add_proto qw/void vp8_vertical_band_2_1_scale_i/, "unsigned char *source, unsigned int src_pitch, …
|
/hardware/samsung_slsi/exynos5/libv4l2/ |
D | exynos_mc.c | 131 struct media_entity *source; in __media_enum_links() local 134 source = exynos_media_get_entity_by_id(media, link->source.entity); in __media_enum_links() 136 if (source == NULL || sink == NULL) { in __media_enum_links() 138 id, i, link->source.entity, in __media_enum_links() 139 link->source.index, in __media_enum_links() 144 fwdlink = __media_entity_add_link(source); in __media_enum_links() 145 fwdlink->source = &source->pads[link->source.index]; in __media_enum_links() 150 backlink->source = &source->pads[link->source.index]; in __media_enum_links() 386 return link->source; in exynos_media_entity_remote_source() 459 struct media_pad *source, in exynos_media_setup_link() argument [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/generic/ |
D | vpx_scale_rtcd.h | 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsign… 15 void vp8_vertical_band_5_4_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsign… 21 void vp8_vertical_band_5_3_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsign… 27 void vp8_vertical_band_2_1_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 30 void vp8_vertical_band_2_1_scale_i_c(unsigned char *source, unsigned int src_pitch, unsigned char *…
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/x86/ |
D | vpx_scale_rtcd.h | 16 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsign… 19 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsign… 22 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsign… 25 void vp8_vertical_band_2_1_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 28 void vp8_vertical_band_2_1_scale_i_c(unsigned char *source, unsigned int src_pitch, unsigned char *… 31 void vp8_vertical_band_5_3_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 34 void vp8_vertical_band_5_4_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de…
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/mips/ |
D | vpx_scale_rtcd.h | 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsign… 15 void vp8_vertical_band_5_4_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsign… 21 void vp8_vertical_band_5_3_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsign… 27 void vp8_vertical_band_2_1_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 30 void vp8_vertical_band_2_1_scale_i_c(unsigned char *source, unsigned int src_pitch, unsigned char *…
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/armv7a/ |
D | vpx_scale_rtcd.h | 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsign… 15 void vp8_vertical_band_5_4_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsign… 21 void vp8_vertical_band_5_3_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsign… 27 void vp8_vertical_band_2_1_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 30 void vp8_vertical_band_2_1_scale_i_c(unsigned char *source, unsigned int src_pitch, unsigned char *…
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/armv7a-neon/ |
D | vpx_scale_rtcd.h | 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsign… 15 void vp8_vertical_band_5_4_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsign… 21 void vp8_vertical_band_5_3_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsign… 27 void vp8_vertical_band_2_1_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 30 void vp8_vertical_band_2_1_scale_i_c(unsigned char *source, unsigned int src_pitch, unsigned char *…
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/mips-dspr2/ |
D | vpx_scale_rtcd.h | 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsign… 15 void vp8_vertical_band_5_4_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsign… 21 void vp8_vertical_band_5_3_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsign… 27 void vp8_vertical_band_2_1_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *de… 30 void vp8_vertical_band_2_1_scale_i_c(unsigned char *source, unsigned int src_pitch, unsigned char *…
|
/hardware/qcom/gps/loc_api/libloc_api-rpc/gen-1240/ |
D | loc_api_cb.xdr | 23 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/htorpc.pl#20 24 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/Start.pm#3 25 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/Htoxdr.pm#1 26 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/XDR.pm#7 27 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/Output.pm#29 28 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/Parser.pm#2 29 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/Metacomments.pm#6 30 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/SymbolTable.pm#3 33 Id: //source/qcom/qct/modem/api/gps/main/latest/loc_api.h#16
|
D | loc_api.xdr | 22 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/htorpc.pl#20 23 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/Start.pm#3 24 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/Htoxdr.pm#1 25 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/XDR.pm#7 26 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/Output.pm#29 27 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/Parser.pm#2 28 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/Metacomments.pm#6 29 Id: //source/qcom/qct/core/mproc/tools/rel/04.01/htorpc/lib/Htorpc/SymbolTable.pm#3 32 Id: //source/qcom/qct/modem/api/gps/main/latest/loc_api.h#16
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/ |
D | perf_common.h | 44 #define TIME_COPY(target, source) target = source argument 72 #define TIME_COPY(target, source) \ argument 73 ((target).tv_sec = (source).tv_sec), ((target).tv_usec = (source).tv_usec)
|
/hardware/qcom/gps/loc_api/libloc_api-rpc/gen-3200/ |
D | loc_api_cb.xdr | 15 Redistribution and use in source and binary forms, with or without modification, are permitted prov… 17 � Redistributions of source code must retain the above copyright notice, this list of condi… 34 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/htorpc.pl#9 35 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/Start.pm#4 36 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/Htoxdr.pm#1 37 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/XDR.pm#7 38 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/Output.pm#26 39 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/Parser.pm#3 40 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/Metacomments.pm#2 41 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/SymbolTable.pm#4
|
D | loc_api.xdr | 14 Redistribution and use in source and binary forms, with or without modification, are permitted prov… 16 � Redistributions of source code must retain the above copyright notice, this list of condi… 33 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/htorpc.pl#9 34 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/Start.pm#4 35 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/Htoxdr.pm#1 36 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/XDR.pm#7 37 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/Output.pm#26 38 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/Parser.pm#3 39 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/Metacomments.pm#2 40 Id: //source/qcom/qct/core/mproc/tools/rel/03.01/htorpc/lib/Htorpc/SymbolTable.pm#4
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
D | postproc.c | 323 YV12_BUFFER_CONFIG *source, in vp8_deblock() argument 367 source->y_buffer + 16 * mbr * source->y_stride, in vp8_deblock() 368 post->y_buffer + 16 * mbr * post->y_stride, source->y_stride, in vp8_deblock() 369 post->y_stride, source->y_width, ylimits, 16); in vp8_deblock() 372 source->u_buffer + 8 * mbr * source->uv_stride, in vp8_deblock() 373 post->u_buffer + 8 * mbr * post->uv_stride, source->uv_stride, in vp8_deblock() 374 post->uv_stride, source->uv_width, uvlimits, 8); in vp8_deblock() 376 source->v_buffer + 8 * mbr * source->uv_stride, in vp8_deblock() 377 post->v_buffer + 8 * mbr * post->uv_stride, source->uv_stride, in vp8_deblock() 378 post->uv_stride, source->uv_width, uvlimits, 8); in vp8_deblock() [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/armv6/ |
D | vp8_variance_halfpixvar16x16_hv_armv6.asm | 4 ; Use of this source code is governed by a BSD-style license 5 ; that can be found in the LICENSE file in the root of the source 8 ; be found in the AUTHORS file in the root of the source tree. 40 ldr r4, [r0, #0] ; load source pixels a, row N 41 ldr r6, [r0, #1] ; load source pixels b, row N 42 ldr r5, [r9, #0] ; load source pixels c, row N+1 43 ldr r7, [r9, #1] ; load source pixels d, row N+1 80 ldr r4, [r0, #4] ; load source pixels a, row N 81 ldr r6, [r0, #5] ; load source pixels b, row N 82 ldr r5, [r9, #4] ; load source pixels c, row N+1 [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/win32/ |
D | scaleopt.c | 55 const unsigned char *source, in horizontal_line_5_4_scale_mmx() argument 89 mov esi, source; in horizontal_line_5_4_scale_mmx() local 140 void vertical_band_5_4_scale_mmx(unsigned char *source, unsigned int src_pitch, unsigned char *dest… in vertical_band_5_4_scale_mmx() argument 145 mov esi, source // Get the source and destination pointer in vertical_band_5_4_scale_mmx() 228 const unsigned char *source, in horizontal_line_5_3_scale_mmx() argument 237 mov esi, source; in horizontal_line_5_3_scale_mmx() local 323 void vertical_band_5_3_scale_mmx(unsigned char *source, unsigned int src_pitch, unsigned char *dest… in vertical_band_5_3_scale_mmx() argument 328 mov esi, source // Get the source and destination pointer in vertical_band_5_3_scale_mmx() 416 const unsigned char *source, in horizontal_line_2_1_scale_mmx() argument 424 mov esi, source in horizontal_line_2_1_scale_mmx() [all …]
|
/hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/xdr/ |
D | loc_api_cb.xdr | 3 * Redistribution and use in source and binary forms, with or without 6 * * Redistributions of source code must retain the above copyright 52 Id: //source/qcom/qct/core/mproc/tools/rel/2h09/htorpc/htorpc.pl#1 53 Id: //source/qcom/qct/core/mproc/tools/rel/2h09/htorpc/lib/Htorpc/Start.pm#1 54 Id: //source/qcom/qct/core/mproc/tools/rel/2h09/htorpc/lib/Htorpc/Htoxdr.pm#1 55 Id: //source/qcom/qct/core/mproc/tools/rel/2h09/htorpc/lib/Htorpc/XDR.pm#3 56 Id: //source/qcom/qct/core/mproc/tools/rel/2h09/htorpc/lib/Htorpc/Output.pm#5 57 Id: //source/qcom/qct/core/mproc/tools/rel/2h09/htorpc/lib/Htorpc/Parser.pm#1 58 Id: //source/qcom/qct/core/mproc/tools/rel/2h09/htorpc/lib/Htorpc/Metacomments.pm#1 59 Id: //source/qcom/qct/core/mproc/tools/rel/2h09/htorpc/lib/Htorpc/SymbolTable.pm#1 [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/x86-msvs/ |
D | obj_int_extract.bat | 3 REM Use of this source code is governed by a BSD-style license 4 REM that can be found in the LICENSE file in the root of the source 7 REM be found in the AUTHORS file in the root of the source tree. 11 REM %1 - Relative path to the directory containing the vp8 source directory.
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/ |
D | dboolhuff.c | 15 const unsigned char *source, in vp8dx_start_decode() argument 20 br->user_buffer_end = source+source_sz; in vp8dx_start_decode() 21 br->user_buffer = source; in vp8dx_start_decode() 28 if (source_sz && !source) in vp8dx_start_decode()
|