/third_party/ffmpeg/libavcodec/ |
D | libopusdec.c | 51 static av_cold int libopus_decode_init(AVCodecContext *avc) in libopus_decode_init() argument 53 struct libopus_context *opus = avc->priv_data; in libopus_decode_init() 57 …channels = avc->extradata_size >= 10 ? avc->extradata[9] : (avc->ch_layout.nb_channels == 1) ? 1 :… in libopus_decode_init() 59 av_log(avc, AV_LOG_WARNING, in libopus_decode_init() 64 avc->sample_rate = 48000; in libopus_decode_init() 65 avc->sample_fmt = avc->request_sample_fmt == AV_SAMPLE_FMT_FLT ? in libopus_decode_init() 67 av_channel_layout_uninit(&avc->ch_layout); in libopus_decode_init() 69 avc->ch_layout.order = AV_CHANNEL_ORDER_UNSPEC; in libopus_decode_init() 70 avc->ch_layout.nb_channels = channels; in libopus_decode_init() 72 av_channel_layout_copy(&avc->ch_layout, &ff_vorbis_ch_layouts[channels - 1]); in libopus_decode_init() [all …]
|
D | ffwavesynth.c | 235 static int wavesynth_parse_extradata(AVCodecContext *avc) in wavesynth_parse_extradata() argument 237 struct wavesynth_context *ws = avc->priv_data; in wavesynth_parse_extradata() 245 if (avc->extradata_size < 4) in wavesynth_parse_extradata() 247 edata = avc->extradata; in wavesynth_parse_extradata() 248 edata_end = edata + avc->extradata_size; in wavesynth_parse_extradata() 274 if (edata_end - edata < 20 || avc->sample_rate <= 0) in wavesynth_parse_extradata() 282 dphi1 = frac64(f1, (int64_t)avc->sample_rate << 16); in wavesynth_parse_extradata() 283 dphi2 = frac64(f2, (int64_t)avc->sample_rate << 16); in wavesynth_parse_extradata() 313 static av_cold int wavesynth_init(AVCodecContext *avc) in wavesynth_init() argument 315 struct wavesynth_context *ws = avc->priv_data; in wavesynth_init() [all …]
|
D | iirfilter.c | 54 static av_cold int butterworth_init_coeffs(void *avc, in butterworth_init_coeffs() argument 65 av_log(avc, AV_LOG_ERROR, "Butterworth filter currently only supports " in butterworth_init_coeffs() 70 av_log(avc, AV_LOG_ERROR, "Butterworth filter currently only supports " in butterworth_init_coeffs() 119 static av_cold int biquad_init_coeffs(void *avc, struct FFIIRFilterCoeffs *c, in biquad_init_coeffs() argument 128 av_log(avc, AV_LOG_ERROR, "Biquad filter currently only supports " in biquad_init_coeffs() 133 av_log(avc, AV_LOG_ERROR, "Biquad filter must have order of 2\n"); in biquad_init_coeffs() 162 av_cold struct FFIIRFilterCoeffs *ff_iir_filter_init_coeffs(void *avc, in ff_iir_filter_init_coeffs() argument 182 ret = butterworth_init_coeffs(avc, c, filt_mode, order, cutoff_ratio, in ff_iir_filter_init_coeffs() 186 ret = biquad_init_coeffs(avc, c, filt_mode, order, cutoff_ratio, in ff_iir_filter_init_coeffs() 190 av_log(avc, AV_LOG_ERROR, "filter type is not currently implemented\n"); in ff_iir_filter_init_coeffs()
|
D | options.c | 42 AVCodecContext *avc= ptr; in context_to_name() local 44 if (avc && avc->codec) in context_to_name() 45 return avc->codec->name; in context_to_name()
|
D | omx.c | 527 OMX_VIDEO_PARAM_AVCTYPE avc = { 0 }; in omx_component_init() local 528 INIT_STRUCT(avc); in omx_component_init() 529 avc.nPortIndex = s->out_port; in omx_component_init() 530 err = OMX_GetParameter(s->handle, OMX_IndexParamVideoAvc, &avc); in omx_component_init() 532 avc.nBFrames = 0; in omx_component_init() 533 avc.nPFrames = avctx->gop_size - 1; in omx_component_init() 536 avc.eProfile = OMX_VIDEO_AVCProfileBaseline; in omx_component_init() 539 avc.eProfile = OMX_VIDEO_AVCProfileMain; in omx_component_init() 542 avc.eProfile = OMX_VIDEO_AVCProfileHigh; in omx_component_init() 547 err = OMX_SetParameter(s->handle, OMX_IndexParamVideoAvc, &avc); in omx_component_init()
|
D | iirfilter.h | 88 struct FFIIRFilterCoeffs* ff_iir_filter_init_coeffs(void *avc,
|
/third_party/selinux/libselinux/src/ |
D | audit2why.c | 50 static struct avc_t *avc = NULL; variable 82 rc = sepol_bool_key_create(avc->handle, name, &key); in check_booleans() 88 rc = sepol_bool_query(avc->handle, in check_booleans() 89 avc->policydb, in check_booleans() 101 rc = sepol_bool_set(avc->handle, in check_booleans() 102 avc->policydb, in check_booleans() 112 rc = sepol_compute_av_reason(avc->ssid, avc->tsid, avc->tclass, in check_booleans() 113 avc->av, &avd, &reason); in check_booleans() 127 rc = sepol_bool_set(avc->handle, in check_booleans() 128 avc->policydb, key, in check_booleans() [all …]
|
D | exception.sh | 24 ../include/selinux/avc.h
|
/third_party/ffmpeg/libavutil/ |
D | log.c | 256 AVClass *avc = *(AVClass **) ptr; in get_category() local 257 if( !avc in get_category() 258 || (avc->version&0xFF)<100 in get_category() 259 || avc->version < (51 << 16 | 59 << 8) in get_category() 260 || avc->category >= AV_CLASS_CATEGORY_NB) return AV_CLASS_CATEGORY_NA + 16; in get_category() 262 if(avc->get_category) in get_category() 263 return avc->get_category(ptr) + 16; in get_category() 265 return avc->category + 16; in get_category() 297 AVClass* avc = avcl ? *(AVClass **) avcl : NULL; in format_line() local 304 if (*print_prefix && avc) { in format_line() [all …]
|
D | internal.h | 166 void avpriv_report_missing_feature(void *avc, 177 void avpriv_request_sample(void *avc,
|
/third_party/ffmpeg/libavformat/ |
D | s337m.c | 35 static int s337m_get_offset_and_codec(void *avc, in s337m_get_offset_and_codec() argument 54 if (avc) in s337m_get_offset_and_codec() 55 avpriv_report_missing_feature(avc, "Data type %#x in SMPTE 337M", data_type & 0x1F); in s337m_get_offset_and_codec() 76 if (avc) in s337m_get_offset_and_codec() 77 avpriv_report_missing_feature(avc, "Dolby E data size %d in SMPTE 337M", data_size); in s337m_get_offset_and_codec()
|
D | Makefile | 215 OBJS-$(CONFIG_FLV_MUXER) += flvenc.o avc.o 253 OBJS-$(CONFIG_HLS_MUXER) += hlsenc.o hlsplaylist.o avc.o 335 av1.o avc.o hevc.o \ 357 OBJS-$(CONFIG_MOV_MUXER) += movenc.o av1.o avc.o hevc.o vpcc.o \ 390 OBJS-$(CONFIG_MXF_MUXER) += mxfenc.o mxf.o avc.o 507 avc.o hevc.o
|
/third_party/ffmpeg/fftools/ |
D | ffmpeg_mux.c | 182 AVFormatContext **avc; in print_sdp() local 189 avc = av_malloc_array(nb_output_files, sizeof(*avc)); in print_sdp() 190 if (!avc) in print_sdp() 194 avc[j] = output_files[i]->ctx; in print_sdp() 205 ret = av_sdp_create(avc, j, sdp, sizeof(sdp)); in print_sdp() 225 av_freep(&avc); in print_sdp()
|
D | ffprobe.c | 329 AVClass* avc = ptr ? *(AVClass **) ptr : NULL; in log_callback() local 350 log_buffer[log_buffer_size].context_name= avc ? av_strdup(avc->item_name(ptr)) : NULL; in log_callback() 351 if (avc) { in log_callback() 352 if (avc->get_category) log_buffer[log_buffer_size].category = avc->get_category(ptr); in log_callback() 353 else log_buffer[log_buffer_size].category = avc->category; in log_callback() 360 if (avc && avc->parent_log_context_offset) { in log_callback() 362 avc->parent_log_context_offset); in log_callback()
|
/third_party/ffmpeg/tests/fate/ |
D | h264.mak | 272 …ce-cama1_vtc_c: CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/cama1_vtc_c.avc 273 …ce-cama2_vtc_b: CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/cama2_vtc_b.avc 275 …ce-cama3_vtc_b: CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/cama3_vtc_b.avc 348 …ext1_panasonic_c: CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/FRext/FRExt1_Panasonic.avc 349 … CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/FRext/FRExt2_Panasonic.avc -vsync passthrough 350 …ext3_panasonic_d: CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/FRext/FRExt3_Panasonic.avc 351 …ext4_panasonic_a: CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/FRext/FRExt4_Panasonic.avc
|
/third_party/node/tools/gyp/tools/emacs/testdata/ |
D | media.gyp | 455 'mp4/avc.cc', 456 'mp4/avc.h',
|
D | media.gyp.fontified | 456 'mp4/avc.cc', 457 'mp4/avc.h',
|
/third_party/selinux/ |
D | BUILD.gn | 163 "$LIBSELINUX_ROOT_DIR/src/avc.c",
|
/third_party/libinput/doc/user/ |
D | building.rst | 163 …May 25 15:28:42 localhost.localdomain audit[23268]: AVC avc: denied { execute } for pid=23268 c…
|
/third_party/openh264/ |
D | RELEASES | 176 — Added support for simulcast avc
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
D | radeon_vcn_dec.c | 1979 … rvcn_dec_message_avc_t avc = get_h264_msg(dec, target, (struct pipe_h264_picture_desc *)picture); in rvcn_dec_message_decode() local 1980 memcpy(codec, (void *)&avc, sizeof(rvcn_dec_message_avc_t)); in rvcn_dec_message_decode()
|
/third_party/ffmpeg/ |
D | BUILD.gn | 1111 "//third_party/ffmpeg/libavformat/avc.c",
|
/third_party/mesa3d/docs/relnotes/ |
D | 22.0.0.rst | 3850 - frontends/omx: preserve omx to keep current mode for avc decoding
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 51699 struct selinux_avc *avc; member
|