Searched refs:img_len (Results 1 – 2 of 2) sorted by relevance
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | gstvorbistag.c | 315 gsize img_len; in gst_vorbis_tag_add_coverart() local 323 g_base64_decode_inplace (img_data_base64, &img_len); in gst_vorbis_tag_add_coverart() 324 if (img_len == 0) in gst_vorbis_tag_add_coverart() 329 img_len, GST_TAG_IMAGE_TYPE_NONE); in gst_vorbis_tag_add_coverart() 366 guint32 img_len = 0, img_type = 0; in gst_vorbis_tag_add_metadata_block_picture() local 398 if (!gst_byte_reader_get_uint32_be (&reader, &img_len)) in gst_vorbis_tag_add_metadata_block_picture() 401 if (!gst_byte_reader_get_data (&reader, img_len, &data)) in gst_vorbis_tag_add_metadata_block_picture() 404 gst_tag_list_add_id3_image (tags, data, img_len, img_type); in gst_vorbis_tag_add_metadata_block_picture()
|
/third_party/gstreamer/gstplugins_good/gst/audioparsers/ |
D | gstflacparse.c | 1112 guint32 img_len = 0, img_type = 0; in gst_flac_parse_handle_picture() local 1140 if (!gst_byte_reader_get_uint32_be (&reader, &img_len)) in gst_flac_parse_handle_picture() 1144 if (!gst_byte_reader_get_data (&reader, img_len, &img_data)) in gst_flac_parse_handle_picture() 1146 if (gst_byte_reader_get_pos (&reader) + img_len > map.size) in gst_flac_parse_handle_picture() 1150 GST_INFO_OBJECT (flacparse, "Got image of %d bytes", img_len); in gst_flac_parse_handle_picture() 1152 if (img_len > 0) { in gst_flac_parse_handle_picture() 1157 gst_tag_list_add_id3_image (flacparse->tags, img_data, img_len, img_type); in gst_flac_parse_handle_picture() 1160 map.data + gst_byte_reader_get_pos (&reader), img_len, img_type); in gst_flac_parse_handle_picture()
|