Home
last modified time | relevance | path

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

/third_party/gstreamer/gstplugins_good/ext/taglib/
Dgstid3v2mux.cc445 const GstStructure *info_struct; in add_image_tag() local
447 info_struct = gst_sample_get_info (sample); in add_image_tag()
448 if (!info_struct in add_image_tag()
449 || !gst_structure_has_name (info_struct, "GstTagImageInfo")) in add_image_tag()
450 info_struct = NULL; in add_image_tag()
469 if (info_struct) in add_image_tag()
470 desc = gst_structure_get_string (info_struct, "image-description"); in add_image_tag()
479 if (info_struct) { in add_image_tag()
480 if (gst_structure_get (info_struct, "image-type", in add_image_tag()
/third_party/gstreamer/gstplugins_bad/gst/id3tag/
Did3tag.c774 const GstStructure *info_struct; in add_image_tag() local
776 info_struct = gst_sample_get_info (sample); in add_image_tag()
777 if (!info_struct in add_image_tag()
778 || !gst_structure_has_name (info_struct, "GstTagImageInfo")) in add_image_tag()
779 info_struct = NULL; in add_image_tag()
791 if (info_struct) in add_image_tag()
792 desc = gst_structure_get_string (info_struct, "image-description"); in add_image_tag()
805 if (info_struct) { in add_image_tag()
806 if (gst_structure_get (info_struct, "image-type", in add_image_tag()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/
Dgstvorbistag.c594 const GstStructure *info_struct; in gst_tag_to_metadata_block_picture() local
596 info_struct = gst_sample_get_info (sample); in gst_tag_to_metadata_block_picture()
597 if (info_struct && gst_structure_has_name (info_struct, "GstTagImageInfo")) { in gst_tag_to_metadata_block_picture()
598 gst_structure_get (info_struct, "image-type", GST_TYPE_TAG_IMAGE_TYPE, in gst_tag_to_metadata_block_picture()
/third_party/skia/third_party/externals/libpng/
DREADME27 To avoid problems with changes to the internals of the png info_struct,
31 accessing/storing the info_struct data, rather than manipulating it
38 info_struct can still be accessed, but the compiler will issue a
139 pngset.c => Functions for storing data into the info_struct
DCHANGES134 of info_struct and invalidates all programs that use a shared libpng****
175 More description of info_struct in libpng.txt and png.h
1076 libpng will reallocate the png_struct and info_struct if they are too small.
2471 png_struct or info_struct members and other deprecated usage in
4222 also removes the support for storing unknown chunks in the info_struct
5042 and info_struct members has not been permitted since libpng-1.5.0.
Dlibpng-manual.txt4734 The png_struct and info_struct members "trans" and "trans_values" were
/third_party/libpng/
DREADME27 To avoid problems with changes to the internals of the png info_struct,
31 accessing/storing the info_struct data, rather than manipulating it
38 info_struct can still be accessed, but the compiler will issue a
139 pngset.c => Functions for storing data into the info_struct
DCHANGES134 of info_struct and invalidates all programs that use a shared libpng****
175 More description of info_struct in libpng.txt and png.h
1076 libpng will reallocate the png_struct and info_struct if they are too small.
2471 png_struct or info_struct members and other deprecated usage in
4222 also removes the support for storing unknown chunks in the info_struct
5042 and info_struct members has not been permitted since libpng-1.5.0.
Dlibpng-manual.txt4734 The png_struct and info_struct members "trans" and "trans_values" were
/third_party/flutter/skia/third_party/externals/libpng/
DREADME27 To avoid problems with changes to the internals of the png info_struct,
31 accessing/storing the info_struct data, rather than manipulating it
38 info_struct can still be accessed, but the compiler will issue a
139 pngset.c => Functions for storing data into the info_struct
DCHANGES134 of info_struct and invalidates all programs that use a shared libpng****
175 More description of info_struct in libpng.txt and png.h
1076 libpng will reallocate the png_struct and info_struct if they are too small.
2471 png_struct or info_struct members and other deprecated usage in
4222 also removes the support for storing unknown chunks in the info_struct
5042 and info_struct members has not been permitted since libpng-1.5.0.
Dlibpng-manual.txt4734 The png_struct and info_struct members "trans" and "trans_values" were
/third_party/pixman/test/
Dutils.c661 png_info *info_struct; in write_png() local
687 if (!(info_struct = png_create_info_struct (write_struct))) in write_png()
692 png_set_IHDR (write_struct, info_struct, width, height, in write_png()
697 png_write_info (write_struct, info_struct); in write_png()
706 png_destroy_write_struct (&write_struct, &info_struct); in write_png()