/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
D | resize_util.c | 47 int f, frames; in main() local 82 frames = atoi(argv[5]); in main() 84 frames = INT_MAX; in main() 90 if (frames == INT_MAX) in main() 93 printf("%d\n", frames); in main() 102 while (f < frames) { in main()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | temporal_filter.c | 241 YV12_BUFFER_CONFIG *f = cpi->frames[alt_ref_index]; in vp8_temporal_filter_iterate_c() 285 if (cpi->frames[frame] == NULL) in vp8_temporal_filter_iterate_c() 304 cpi->frames[alt_ref_index], in vp8_temporal_filter_iterate_c() 305 cpi->frames[frame], in vp8_temporal_filter_iterate_c() 322 cpi->frames[frame]->y_buffer + mb_y_offset, in vp8_temporal_filter_iterate_c() 323 cpi->frames[frame]->u_buffer + mb_uv_offset, in vp8_temporal_filter_iterate_c() 324 cpi->frames[frame]->v_buffer + mb_uv_offset, in vp8_temporal_filter_iterate_c() 325 cpi->frames[frame]->y_stride, in vp8_temporal_filter_iterate_c() 502 vpx_memset(cpi->frames, 0, max_frames*sizeof(YV12_BUFFER_CONFIG *)); in vp8_temporal_filter_prepare_c() 509 cpi->frames[frames_to_blur-1-frame] = &buf->img; in vp8_temporal_filter_prepare_c()
|
D | onyx_int.h | 608 YV12_BUFFER_CONFIG *frames[MAX_LAG_BUFFERS]; member
|
/hardware/qcom/audio/legacy/libalsa-intf/ |
D | arec.c | 185 long frames; in record_file() local 269 frames = bufsize / 2; in record_file() 271 frames = bufsize / 8; in record_file() 273 frames = bufsize / 12; in record_file() 275 frames = bufsize / 4; in record_file() 277 x.frames = frames; in record_file() 300 fprintf(stderr, "Arec:avail 1 = %d frames = %ld\n",avail, frames); in record_file() 307 if (x.frames > avail) in record_file() 308 frames = avail; in record_file() 324 x.frames -= frames; in record_file() [all …]
|
D | alsa_pcm.c | 472 long frames) in mmap_transfer() argument 482 frames = frames * channels *2 ; in mmap_transfer() 484 while (frames-- > 0) { in mmap_transfer() 493 long frames) in mmap_transfer_capture() argument 506 frames = frames * channels *2 ; in mmap_transfer_capture() 508 while (frames-- > 0) { in mmap_transfer_capture() 528 long frames; in pcm_write_mmap() local 532 frames = (pcm->flags & PCM_MONO) ? (count / 2) : (count / 4); in pcm_write_mmap() 543 pcm->sync_ptr->c.control.appl_ptr += frames; in pcm_write_mmap() 584 x.frames = (count / (channels * 2)) ; in pcm_write_nmmap() [all …]
|
D | aplay.c | 173 long frames; in play_file() local 281 frames = (pcm->flags & PCM_MONO) ? (bufsize / 2) : (bufsize / 4); in play_file() 325 fprintf(stderr, "Aplay:avail = %d frames = %d\n",avail, frames); in play_file() 341 frames = (pcm->flags & PCM_MONO) ? (remainingData / 2) : (remainingData / 4); in play_file() 361 pcm->sync_ptr->c.control.appl_ptr += frames; in play_file() 410 offset += frames; in play_file()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
D | decode_perf_test.cc | 89 const unsigned frames = video.frame_number(); in TEST_P() local 90 const double fps = double(frames) / elapsed_secs; in TEST_P() 97 printf("\t\"totalFrames\" : %u,\n", frames); in TEST_P()
|
D | superframe_test.cc | 51 const int frames = (marker & 0x7) + 1; in MutateEncoderOutputHook() local 53 const unsigned int index_sz = 2 + mag * frames; in MutateEncoderOutputHook()
|
D | tools_common.sh | 225 frames=${4} 250 --limit=${frames} ${use_ivf} ${extra_flags} --output="${output}" \ 255 --limit=${frames} ${use_ivf} ${extra_flags} --output="${output}" - \
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_temporal_filter.c | 206 YV12_BUFFER_CONFIG *f = cpi->frames[alt_ref_index]; in temporal_filter_iterate_c() 253 if (cpi->frames[frame] == NULL) in temporal_filter_iterate_c() 270 cpi->frames[alt_ref_index]->y_buffer + mb_y_offset, in temporal_filter_iterate_c() 271 cpi->frames[frame]->y_buffer + mb_y_offset, in temporal_filter_iterate_c() 272 cpi->frames[frame]->y_stride); in temporal_filter_iterate_c() 285 cpi->frames[frame]->y_buffer + mb_y_offset, in temporal_filter_iterate_c() 286 cpi->frames[frame]->u_buffer + mb_uv_offset, in temporal_filter_iterate_c() 287 cpi->frames[frame]->v_buffer + mb_uv_offset, in temporal_filter_iterate_c() 288 cpi->frames[frame]->y_stride, in temporal_filter_iterate_c() 453 vp9_zero(cpi->frames); in vp9_temporal_filter_prepare() [all …]
|
D | vp9_onyx_int.h | 445 YV12_BUFFER_CONFIG *frames[MAX_LAG_BUFFERS]; member
|
/hardware/qcom/audio/legacy/alsa_sound/ |
D | AudioUsbALSA.cpp | 383 long frames; in RecordingThreadEntry() local 432 frames = (musbRecordingHandle->flags & PCM_MONO) ? (bufsize / 2) : (bufsize / 4); in RecordingThreadEntry() 433 x.frames = (musbRecordingHandle->flags & PCM_MONO) ? (bufsize / 2) : (bufsize / 4); in RecordingThreadEntry() 492 if (x.frames > avail) in RecordingThreadEntry() 493 frames = avail; in RecordingThreadEntry() 537 musbRecordingHandle->sync_ptr->c.control.appl_ptr += frames; in RecordingThreadEntry() 549 mproxyRecordingHandle->sync_ptr->c.control.appl_ptr += frames; in RecordingThreadEntry() 772 long frames; in PlaybackThreadEntry() local 839 frames = (mproxyPlaybackHandle->flags & PCM_MONO) ? (proxyPeriod / 2) : (proxyPeriod / 4); in PlaybackThreadEntry() 840 x.frames = (mproxyPlaybackHandle->flags & PCM_MONO) ? (proxyPeriod / 2) : (proxyPeriod / 4); in PlaybackThreadEntry() [all …]
|
/hardware/intel/common/libva/test/videoprocess/ |
D | process.cfg | 2 # This application will firstly loads frames(yv12 format in file) to one type of 4 #(NV12/YV12/I420 surface) will be stored to frames(yv12 format in file). 23 #3.How many frames to be processed
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
D | rate_hist.c | 32 int frames; member 51 hist->frames = 0; in init_rate_histogram() 84 int idx = hist->frames++ % hist->samples; in update_rate_histogram() 94 for (i = hist->frames; i > 0 && hist->frames - i < hist->samples; i--) { in update_rate_histogram()
|
D | CHANGELOG | 193 more consistent in the presence of frames that are substantially 194 different quality than the surrounding frames, as in the temporal 305 Added support for error concealment, allowing frames to maintain 345 query decoder to determine which reference frames were updated 358 Avoid double copying of key frames into alt and golden buffer 383 Relax rate control for last few frames 385 Limit key frame quantizer for forced key frames. 422 instead of individual frames. The -y option has been removed. 477 Improve handling of invalid frames 500 Skip unnecessary search of identical frames [all …]
|
D | usage_dx.dox | 41 chooses not to make use of that feature, decoded frames are made available 46 frames that are ready for display, depending on the codec.
|
D | examples.mk | 141 decode_with_drops.DESCRIPTION = Drops frames while decoding 146 decode_with_partial_drops.DESCRIPTION = Drops parts of frames while decoding
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/ |
D | vp9_dx_iface.c | 285 const uint32_t frames = (marker & 0x7) + 1; in parse_superframe_index() local 287 const size_t index_sz = 2 + mag * frames; in parse_superframe_index() 294 for (i = 0; i < frames; i++) { in parse_superframe_index() 302 *count = frames; in parse_superframe_index() 326 const uint32_t frames = (marker & 0x7) + 1; in vp9_decode() local 328 const uint32_t index_sz = 2 + mag * frames; in vp9_decode()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/src/ |
D | nestegg.c | 1253 uint64_t track_number, length, frame_sizes[256], cluster_tc, flags, frames, tc_scale, total; in ne_read_block() local 1284 frames = 0; in ne_read_block() 1292 frames = 1; in ne_read_block() 1297 r = ne_read_uint(ctx->io, &frames, 1); in ne_read_block() 1301 frames += 1; in ne_read_block() 1304 if (frames > 256) in ne_read_block() 1312 if (frames == 1) in ne_read_block() 1314 r = ne_read_xiph_lacing(ctx->io, (size_t)block_size, &consumed, frames, frame_sizes); in ne_read_block() 1319 if ((block_size - consumed) % frames) in ne_read_block() 1321 for (i = 0; i < frames; ++i) in ne_read_block() [all …]
|
/hardware/qcom/media/mm-video-v4l2/vidc/venc/inc/ |
D | video_encoder_device.h | 159 bool venc_set_ltruse(OMX_U32 id, OMX_U32 frames);
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
D | AudioHardwareInterface.h | 123 virtual status_t getPresentationPosition(uint64_t *frames, struct timespec *timestamp);
|
/hardware/libhardware/modules/audio_remote_submix/ |
D | audio_hw.cpp | 784 const size_t frames = bytes / frame_size; in audio_config_compare() local 798 usleep(frames * 1000000 / out_get_sample_rate(&stream->common)); in audio_config_compare() 813 if (rsxadev->routes[out->route_handle].input == NULL && availableToWrite < frames) { in audio_config_compare() 816 size_t frames_to_flush_from_source = frames - availableToWrite; in audio_config_compare() 830 written_frames = sink->write(buffer, frames); in audio_config_compare() 849 written_frames = sink->write(buffer, frames); in audio_config_compare()
|
/hardware/qcom/msm8x84/kernel-headers/sound/ |
D | asound.h | 445 snd_pcm_uframes_t frames; member 451 snd_pcm_uframes_t frames; member
|
/hardware/qcom/msm8x84/original-kernel-headers/sound/ |
D | asound.h | 451 snd_pcm_uframes_t frames; member 457 snd_pcm_uframes_t frames; member
|
/hardware/libhardware/include/hardware/ |
D | audio.h | 396 uint64_t *frames, struct timespec *timestamp);
|