/third_party/ffmpeg/libavcodec/ |
D | libopusdec.c | 50 static av_cold int libopus_decode_init(AVCodecContext *avc) in libopus_decode_init() argument 52 struct libopus_context *opus = avc->priv_data; in libopus_decode_init() 56 avc->channels = avc->extradata_size >= 10 ? avc->extradata[9] : (avc->channels == 1) ? 1 : 2; in libopus_decode_init() 57 if (avc->channels <= 0) { in libopus_decode_init() 58 av_log(avc, AV_LOG_WARNING, in libopus_decode_init() 59 "Invalid number of channels %d, defaulting to stereo\n", avc->channels); in libopus_decode_init() 60 avc->channels = 2; in libopus_decode_init() 63 avc->sample_rate = 48000; in libopus_decode_init() 64 avc->sample_fmt = avc->request_sample_fmt == AV_SAMPLE_FMT_FLT ? in libopus_decode_init() 66 avc->channel_layout = avc->channels > 8 ? 0 : in libopus_decode_init() [all …]
|
D | ffwavesynth.c | 234 static int wavesynth_parse_extradata(AVCodecContext *avc) in wavesynth_parse_extradata() argument 236 struct wavesynth_context *ws = avc->priv_data; in wavesynth_parse_extradata() 244 if (avc->extradata_size < 4) in wavesynth_parse_extradata() 246 edata = avc->extradata; in wavesynth_parse_extradata() 247 edata_end = edata + avc->extradata_size; in wavesynth_parse_extradata() 273 if (edata_end - edata < 20 || avc->sample_rate <= 0) in wavesynth_parse_extradata() 281 dphi1 = frac64(f1, (int64_t)avc->sample_rate << 16); in wavesynth_parse_extradata() 282 dphi2 = frac64(f2, (int64_t)avc->sample_rate << 16); in wavesynth_parse_extradata() 312 static av_cold int wavesynth_init(AVCodecContext *avc) in wavesynth_init() argument 314 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 | 40 AVCodecContext *avc= ptr; in context_to_name() local 42 if(avc && avc->codec && avc->codec->name) in context_to_name() 43 return avc->codec->name; in context_to_name()
|
D | omx.c | 520 OMX_VIDEO_PARAM_AVCTYPE avc = { 0 }; in omx_component_init() local 521 INIT_STRUCT(avc); in omx_component_init() 522 avc.nPortIndex = s->out_port; in omx_component_init() 523 err = OMX_GetParameter(s->handle, OMX_IndexParamVideoAvc, &avc); in omx_component_init() 525 avc.nBFrames = 0; in omx_component_init() 526 avc.nPFrames = avctx->gop_size - 1; in omx_component_init() 529 avc.eProfile = OMX_VIDEO_AVCProfileBaseline; in omx_component_init() 532 avc.eProfile = OMX_VIDEO_AVCProfileMain; in omx_component_init() 535 avc.eProfile = OMX_VIDEO_AVCProfileHigh; in omx_component_init() 540 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 | 254 AVClass *avc = *(AVClass **) ptr; in get_category() local 255 if( !avc in get_category() 256 || (avc->version&0xFF)<100 in get_category() 257 || avc->version < (51 << 16 | 59 << 8) in get_category() 258 || avc->category >= AV_CLASS_CATEGORY_NB) return AV_CLASS_CATEGORY_NA + 16; in get_category() 260 if(avc->get_category) in get_category() 261 return avc->get_category(ptr) + 16; in get_category() 263 return avc->category + 16; in get_category() 295 AVClass* avc = avcl ? *(AVClass **) avcl : NULL; in format_line() local 302 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 | 34 static int s337m_get_offset_and_codec(void *avc, in s337m_get_offset_and_codec() argument 53 if (avc) in s337m_get_offset_and_codec() 54 avpriv_report_missing_feature(avc, "Data type %#x in SMPTE 337M", data_type & 0x1F); in s337m_get_offset_and_codec() 75 if (avc) in s337m_get_offset_and_codec() 76 avpriv_report_missing_feature(avc, "Dolby E data size %d in SMPTE 337M", data_size); in s337m_get_offset_and_codec()
|
D | Makefile | 202 OBJS-$(CONFIG_FLV_MUXER) += flvenc.o avc.o 240 OBJS-$(CONFIG_HLS_MUXER) += hlsenc.o hlsplaylist.o avc.o 314 av1.o avc.o hevc.o isom_tags.o \ 336 OBJS-$(CONFIG_MOV_MUXER) += movenc.o av1.o avc.o hevc.o vpcc.o \ 368 OBJS-$(CONFIG_MXF_MUXER) += mxfenc.o mxf.o avc.o 483 avc.o hevc.o 576 av1.o avc.o hevc.o isom_tags.o \
|
/third_party/ffmpeg/tests/fate/ |
D | h264.mak | 268 …ce-cama1_vtc_c: CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/cama1_vtc_c.avc 269 …ce-cama2_vtc_b: CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/cama2_vtc_b.avc 271 …ce-cama3_vtc_b: CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/cama3_vtc_b.avc 344 …ext1_panasonic_c: CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/FRext/FRExt1_Panasonic.avc 345 …sonic_b: CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/FRext/FRExt2_Panasonic.avc -vsync 0 346 …ext3_panasonic_d: CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/FRext/FRExt3_Panasonic.avc 347 …ext4_panasonic_a: CMD = framecrc -i $(TARGET_SAMPLES)/h264-conformance/FRext/FRExt4_Panasonic.avc
|
/third_party/gstreamer/gstplugins_good/gst/rtp/ |
D | gstrtph264pay.c | 1378 gboolean avc; in gst_rtp_h264_pay_handle_buffer() local 1390 avc = rtph264pay->stream_format == GST_H264_STREAM_FORMAT_AVC; in gst_rtp_h264_pay_handle_buffer() 1392 if (avc) { in gst_rtp_h264_pay_handle_buffer() 1438 if (avc) { in gst_rtp_h264_pay_handle_buffer() 1683 if (!avc) { in gst_rtp_h264_pay_handle_buffer()
|
/third_party/ffmpeg/fftools/ |
D | ffprobe.c | 305 AVClass* avc = ptr ? *(AVClass **) ptr : NULL; in log_callback() local 326 log_buffer[log_buffer_size].context_name= avc ? av_strdup(avc->item_name(ptr)) : NULL; in log_callback() 327 if (avc) { in log_callback() 328 if (avc->get_category) log_buffer[log_buffer_size].category = avc->get_category(ptr); in log_callback() 329 else log_buffer[log_buffer_size].category = avc->category; in log_callback() 336 if (avc && avc->parent_log_context_offset) { in log_callback() 338 avc->parent_log_context_offset); in log_callback()
|
D | ffmpeg.c | 2814 AVFormatContext **avc; in print_sdp() local 2821 avc = av_malloc_array(nb_output_files, sizeof(*avc)); in print_sdp() 2822 if (!avc) in print_sdp() 2826 avc[j] = output_files[i]->ctx; in print_sdp() 2834 av_sdp_create(avc, j, sdp, sizeof(sdp)); in print_sdp() 2850 av_freep(&avc); in print_sdp()
|
/third_party/flutter/skia/src/core/ |
D | SkCanvas.cpp | 1388 AutoValidateClip avc(this); in onClipRect() local 1403 AutoValidateClip avc(this); in androidFramework_setDeviceClipRestriction() local 1420 AutoValidateClip avc(this); in onClipRRect() local 1457 AutoValidateClip avc(this); in onClipPath() local 1478 AutoValidateClip avc(this); in onClipRegion() local
|
/third_party/node/tools/gyp/tools/emacs/testdata/ |
D | media.gyp | 455 'mp4/avc.cc', 456 'mp4/avc.h',
|
/third_party/node/deps/npm/node_modules/node-gyp/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 | 155 "$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 | 157 — 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 | 1069 "//third_party/ffmpeg/libavformat/avc.c",
|