Home
last modified time | relevance | path

Searched refs:streaminfo (Results 1 – 13 of 13) sorted by relevance

/third_party/ffmpeg/libavformat/
Dflacenc.c45 uint8_t streaminfo[FLAC_STREAMINFO_SIZE]; member
282 uint8_t *streaminfo; in flac_write_audio_packet() local
286 streaminfo = av_packet_get_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA, in flac_write_audio_packet()
288 if (streaminfo && streaminfo_size == FLAC_STREAMINFO_SIZE) { in flac_write_audio_packet()
289 memcpy(c->streaminfo, streaminfo, FLAC_STREAMINFO_SIZE); in flac_write_audio_packet()
336 avio_write(pb, c->streaminfo, FLAC_STREAMINFO_SIZE); in flac_write_trailer()
/third_party/gstreamer/gstplugins_good/gst/audioparsers/
Dgstflacparse.c1254 GstBuffer *streaminfo = NULL; in gst_flac_parse_handle_headers() local
1281 streaminfo = header; in gst_flac_parse_handle_headers()
1292 if (vorbiscomment == NULL && streaminfo != NULL) { in gst_flac_parse_handle_headers()
1300 g_list_index (flacparse->headers, streaminfo) + 1); in gst_flac_parse_handle_headers()
1303 if (marker == NULL || streaminfo == NULL || vorbiscomment == NULL) { in gst_flac_parse_handle_headers()
1306 "formats may be broken", marker, streaminfo, vorbiscomment); in gst_flac_parse_handle_headers()
1318 gst_buffer_map (streaminfo, &sinfomap, GST_MAP_READ); in gst_flac_parse_handle_headers()
1338 gst_buffer_unmap (streaminfo, &sinfomap); in gst_flac_parse_handle_headers()
1346 GST_BUFFER_CAST (l->data) != streaminfo) { in gst_flac_parse_handle_headers()
1432 GstBuffer *marker, *streaminfo; in gst_flac_parse_generate_headers() local
[all …]
/third_party/gstreamer/gstreamer/docs/random/wtay/
Dpipelineinfo11 - streaminfo: information about the stream as encoded into the
21 caps, metadata, streaminfo are supposed to remain fairly static during
23 for this is that caps/metadata/streaminfo is quite expensive and
66 Streaminfo is a GstCaps element property (named "streaminfo") that contains
82 tags, so the TLEN tag should be put in the streaminfo and the actual
85 So, be careful when showing streaminfo as-is in an app.
250 used to describe media info, metadata fields, streaminfo fields or anything
Dtimecache105 - metadata, streaminfo, other objects:
/third_party/gstreamer/gstplugins_good/ext/flac/
Dgstflacenc.c1069 GstBuffer *streaminfo = NULL; in gst_flac_enc_process_stream_headers() local
1103 streaminfo = buf; in gst_flac_enc_process_stream_headers()
1111 if (marker == NULL || streaminfo == NULL || vorbiscomment == NULL) { in gst_flac_enc_process_stream_headers()
1113 "formats may be broken", marker, streaminfo, vorbiscomment); in gst_flac_enc_process_stream_headers()
1130 slen = gst_buffer_get_size (streaminfo); in gst_flac_enc_process_stream_headers()
1142 gst_buffer_extract (streaminfo, 0, bdata + 13, slen); in gst_flac_enc_process_stream_headers()
1156 if (buf != marker && buf != streaminfo && buf != vorbiscomment) { in gst_flac_enc_process_stream_headers()
/third_party/gstreamer/gstplugins_base/tests/check/elements/
Dplaybin-complex.c482 const gchar * streaminfo) in gst_codec_demuxer_setup_pad() argument
484 if (g_str_equal (streaminfo, "none")) { in gst_codec_demuxer_setup_pad()
508 if (g_str_equal (streaminfo, "raw-video")) { in gst_codec_demuxer_setup_pad()
515 } else if (g_str_equal (streaminfo, "compressed-video")) { in gst_codec_demuxer_setup_pad()
517 } else if (g_str_equal (streaminfo, "raw-audio")) { in gst_codec_demuxer_setup_pad()
538 const gchar *streaminfo; in gst_codec_demuxer_setcaps() local
542 streaminfo = gst_structure_get_string (s, "stream0"); in gst_codec_demuxer_setcaps()
543 gst_codec_demuxer_setup_pad (demux, &demux->srcpad0, streaminfo); in gst_codec_demuxer_setcaps()
545 streaminfo = gst_structure_get_string (s, "stream1"); in gst_codec_demuxer_setcaps()
546 gst_codec_demuxer_setup_pad (demux, &demux->srcpad1, streaminfo); in gst_codec_demuxer_setcaps()
/third_party/ffmpeg/libavcodec/
Dflacdec.c98 uint8_t *streaminfo; in flac_decode_init() local
108 if (!ff_flac_is_extradata_valid(avctx, &format, &streaminfo)) in flac_decode_init()
112 ret = ff_flac_parse_streaminfo(avctx, &s->flac_stream_info, streaminfo); in flac_decode_init()
Dflacenc.c245 uint8_t *streaminfo; in flac_encode_init() local
425 streaminfo = av_malloc(FLAC_STREAMINFO_SIZE); in flac_encode_init()
426 if (!streaminfo) in flac_encode_init()
428 write_streaminfo(s, streaminfo); in flac_encode_init()
429 avctx->extradata = streaminfo; in flac_encode_init()
/third_party/gstreamer/gstplugins_base/gst/playback/
Dgstplaybin2.c306 GValueArray *streaminfo; member
/third_party/gstreamer/gstplugins_base/docs/random/
DChangeLog-0.84345 Actually clean up streaminfo if output fails. This would trigger
4347 a streaminfo structure is created, but the subsequent state change
13743 signal streaminfo through tags
/third_party/gstreamer/gstplugins_bad/docs/random/
DChangeLog-0.86516 Actually clean up streaminfo if output fails. This would trigger
6518 a streaminfo structure is created, but the subsequent state change
15914 signal streaminfo through tags
/third_party/gstreamer/gstplugins_base/
DChangeLog133813 gst/playback/gstplaybin.c: Remove obsolete streaminfo code and fix a leak. Fixes #529546
133816 Remove obsolete streaminfo code and fix a leak. Fixes #529546
142232 refcount of streaminfo object. Fixes #426250.
143954 …gst/playback/gstplaybasebin.c: Take some locks and make a copy of the streaminfo value array we ma…
143958 Take some locks and make a copy of the streaminfo value array we
150269 use a more bindings-friendly way of exposing streaminfo
/third_party/gstreamer/gstplugins_good/
DChangeLog85526 flacparse: don't error out on invalid minimum_blocksize value in streaminfo header
126963 if possible to help decoders if the streaminfo can't be rewritten
126971 …: Support decoding of all depths between 4 and 32 bits and read the depth from the streaminfo he...
126976 depth from the streaminfo header if needed. Also support all sampling