Home
last modified time | relevance | path

Searched refs:auds (Results 1 – 7 of 7) sorted by relevance

/third_party/gstreamer/gstplugins_good/gst/avi/
Dgstavimux.c317 memset (&(audpad->auds), 0, sizeof (gst_riff_strf_auds)); in gst_avi_mux_pad_reset()
739 avipad->parent.hdr.rate = avipad->auds.rate; in gst_avi_mux_audsink_set_fields()
742 avipad->max_audio_chunk = avipad->auds.blockalign = in gst_avi_mux_audsink_set_fields()
747 avipad->parent.hdr.rate = avipad->auds.av_bps / avipad->auds.blockalign; in gst_avi_mux_audsink_set_fields()
748 avipad->parent.hdr.samplesize = avipad->auds.blockalign; in gst_avi_mux_audsink_set_fields()
849 avipad->auds.channels = channels; in gst_avi_mux_audsink_set_caps()
850 avipad->auds.rate = rate; in gst_avi_mux_audsink_set_caps()
875 avipad->auds.blockalign = 8; in gst_avi_mux_audsink_set_caps()
876 avipad->auds.bits_per_sample = 8; in gst_avi_mux_audsink_set_caps()
879 avipad->auds.blockalign = 16; in gst_avi_mux_audsink_set_caps()
[all …]
DREADME19 ! ! demuxer (video/x-msvideo, auds)..
56 ! ! ! auds).. (--------) (------) !
Dgstavimux.h117 gst_riff_strf_auds auds; member
Dgstavidemux.h72 gst_riff_strf_auds *auds; member
Dgstavidemux.c349 stream->strf.auds->av_bps); in avi_stream_convert_bytes_to_time_unchecked()
356 return gst_util_uint64_scale_int (time, stream->strf.auds->av_bps, in avi_stream_convert_time_to_bytes_unchecked()
410 stream->strf.auds->av_bps, GST_SECOND); in gst_avi_demux_src_convert()
425 if (stream->strf.auds->av_bps != 0) { in gst_avi_demux_src_convert()
485 } else if (stream->strf.auds->av_bps != 0) { in gst_avi_demux_handle_src_query()
1362 blockalign = stream->strf.auds->blockalign; in gst_avi_demux_add_index()
2137 gst_riff_parse_strf_auds (element, sub, &stream->strf.auds, in gst_avi_demux_parse_stream()
2144 && stream->strf.auds->blockalign != 1; in gst_avi_demux_parse_stream()
2148 if ((!stream->is_vbr && !stream->strf.auds->av_bps) || in gst_avi_demux_parse_stream()
2157 if (stream->strf.auds->blockalign <= 4) { in gst_avi_demux_parse_stream()
[all …]
/third_party/gstreamer/gstplugins_good/gst/matroska/
Dmatroska-demux.c7107 gst_riff_strf_auds auds; in gst_matroska_demux_audio_caps() local
7113 auds.format = GST_READ_UINT16_LE (data); in gst_matroska_demux_audio_caps()
7114 auds.channels = GST_READ_UINT16_LE (data + 2); in gst_matroska_demux_audio_caps()
7115 auds.rate = GST_READ_UINT32_LE (data + 4); in gst_matroska_demux_audio_caps()
7116 auds.av_bps = GST_READ_UINT32_LE (data + 8); in gst_matroska_demux_audio_caps()
7117 auds.blockalign = GST_READ_UINT16_LE (data + 12); in gst_matroska_demux_audio_caps()
7118 auds.bits_per_sample = GST_READ_UINT16_LE (data + 16); in gst_matroska_demux_audio_caps()
7127 *riff_audio_fmt = auds.format; in gst_matroska_demux_audio_caps()
7130 caps = gst_riff_create_audio_caps (auds.format, NULL, &auds, codec_data, in gst_matroska_demux_audio_caps()
7136 GST_WARNING ("Unhandled RIFF audio format 0x%02x", auds.format); in gst_matroska_demux_audio_caps()
/third_party/gstreamer/gstplugins_good/
DChangeLog36762 auds.blockalign is set once the first caps arrive. If
36763 gst_avi_mux_stop_file() is called before this happens then auds.blockalign
36766 avipad->parent.hdr.rate = avipad->auds.av_bps / avipad->auds.blockalign;
109125 avidemux: Only call convert function if we have strf.auds