Lines Matching refs:pb_buf

3809     AVIOContext *pb_buf;
3816 ret = avio_open_dyn_buf(&pb_buf);
3821 mov_write_track_metadata(pb_buf, st, "name", "title");
3824 if ((ret = mov_write_track_kinds(pb_buf, st)) < 0)
3828 if ((size = avio_get_dyn_buf(pb_buf, &buf)) > 0) {
3833 ffio_free_dyn_buf(&pb_buf);
4700 AVIOContext *pb_buf;
4704 ret = avio_open_dyn_buf(&pb_buf);
4709 mov_write_3gp_udta_tag(pb_buf, s, "perf", "artist");
4710 mov_write_3gp_udta_tag(pb_buf, s, "titl", "title");
4711 mov_write_3gp_udta_tag(pb_buf, s, "auth", "author");
4712 mov_write_3gp_udta_tag(pb_buf, s, "gnre", "genre");
4713 mov_write_3gp_udta_tag(pb_buf, s, "dscp", "comment");
4714 mov_write_3gp_udta_tag(pb_buf, s, "albm", "album");
4715 mov_write_3gp_udta_tag(pb_buf, s, "cprt", "copyright");
4716 mov_write_3gp_udta_tag(pb_buf, s, "yrrc", "date");
4717 mov_write_loci_tag(s, pb_buf);
4719 mov_write_string_metadata(s, pb_buf, "\251ART", "artist", 0);
4720 mov_write_string_metadata(s, pb_buf, "\251nam", "title", 0);
4721 mov_write_string_metadata(s, pb_buf, "\251aut", "author", 0);
4722 mov_write_string_metadata(s, pb_buf, "\251alb", "album", 0);
4723 mov_write_string_metadata(s, pb_buf, "\251day", "date", 0);
4724 mov_write_string_metadata(s, pb_buf, "\251swr", "encoder", 0);
4726 mov_write_string_metadata(s, pb_buf, "\251des", "comment", 0);
4728 mov_write_string_metadata(s, pb_buf, "\251cmt", "comment", 0);
4729 mov_write_string_metadata(s, pb_buf, "\251gen", "genre", 0);
4730 mov_write_string_metadata(s, pb_buf, "\251cpy", "copyright", 0);
4731 mov_write_string_metadata(s, pb_buf, "\251mak", "make", 0);
4732 mov_write_string_metadata(s, pb_buf, "\251mod", "model", 0);
4733 mov_write_string_metadata(s, pb_buf, "\251xyz", "location", 0);
4734 mov_write_string_metadata(s, pb_buf, "\251key", "keywords", 0);
4735 mov_write_raw_metadata_tag(s, pb_buf, "XMP_", "xmp");
4739 mov_write_geo_tag(s, pb_buf);
4743 mov_write_meta_tag(pb_buf, mov, s);
4744 mov_write_loci_tag(s, pb_buf);
4748 mov_write_chpl_tag(pb_buf, s);
4750 if ((size = avio_get_dyn_buf(pb_buf, &buf)) > 0) {
4755 ffio_free_dyn_buf(&pb_buf);