rjhowell44

Results 103 issues of rjhowell44

New Pad Probe Handler for process audio-frame metadata. ```c /** * @brief creates a new, uniquely named Sound Detection Event (SDE) PPH component * @param[in] name unique name for the...

enhancement

The following existing services that support PGIE and SGIE will be renamed from * `dsl_infer_gie_model_engine_file_get` * `dsl_infer_gie_model_engine_file_set` * `dsl_infer_gie_model_update_listener_add` * `dsl_infer_gie_model_update_listener_remove` * `dsl_infer_gie_tensor_meta_settings_get` * `dsl_infer_gie_tensor_meta_settings_set` to the below to support...

enhancement

New AIE Constructor and Services ```c /** * @brief creates a new, uniquely named Primary Audio Inference Engine (AIE). * @param[in] name unique name for the new Inference Engine *...

enhancement

Default media-type will be `DSL_MEDIA_TYPE_VIDEO_ONLY`. Clients can update both Tee types by calling `dsl_component_media_type_set`. Two Demuxers or Tees must be added to the Pipeline/Branch when building Pipelines that support both...

enhancement

New symbolic constants to define the specific streaming media types ```c /** * @brief DSL Supported Media Types for all Pipelines and Components */ #define DSL_MEDIA_TYPE_AUDIO_ONLY 0x01 #define DSL_MEDIA_TYPE_VIDEO_ONLY 0x10...

enhancement

The parent class will instantiate and link/unlink all common required elements. * queue * audioconvert * audioresample * capsfilter New Symbolic constants ```C /** * @brief DSL Audio Format Types...

enhancement

Similar to the MultiSinksBintr used to manage Video Sinks, with an added nvstreamdemux element to convert the format from `audio/x-raw(NVMM)` to `audio/x-raw`.

enhancement

First Audio Only Sink to be implemented with the following services ```c /** * @brief Creates a new, uniquely named ALSA Sink that streams to a ALSA compatible * device....

enhancement

The PipelineBintr will update its internal BranchBintr when either `dsl_pipeline_audiomux_enabled_set` or `dsl_pipeline_videomux_enabled_set` are called. Clients will update Branch Components by calling `dsl_component_media_type_set`. Default will be VIDEO_ONLY

enhancement