gf_isom_apple_get_tag   93 applications/mp4box/filedump.c 	GF_Err e = gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_COVER_ART, &tag, &tag_len);
gf_isom_apple_get_tag 2905 applications/mp4box/filedump.c 	if (gf_isom_apple_get_tag(file, 0, &tag, &tag_len) == GF_OK) {
gf_isom_apple_get_tag 2907 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_NAME, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tName: %s\n", tag);
gf_isom_apple_get_tag 2908 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_ARTIST, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tArtist: %s\n", tag);
gf_isom_apple_get_tag 2909 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_ALBUM, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tAlbum: %s\n", tag);
gf_isom_apple_get_tag 2910 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_COMMENT, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tComment: %s\n", tag);
gf_isom_apple_get_tag 2911 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_TRACK, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tTrack: %d / %d\n", tag[3], tag[5]);
gf_isom_apple_get_tag 2912 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_COMPOSER, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tComposer: %s\n", tag);
gf_isom_apple_get_tag 2913 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_WRITER, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tWriter: %s\n", tag);
gf_isom_apple_get_tag 2914 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_ALBUM_ARTIST, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tAlbum Artist: %s\n", tag);
gf_isom_apple_get_tag 2916 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_GENRE, &tag, &tag_len)==GF_OK) {
gf_isom_apple_get_tag 2923 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_COMPILATION, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tCompilation: %s\n", tag[0] ? "Yes" : "No");
gf_isom_apple_get_tag 2924 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_GAPLESS, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tGapless album: %s\n", tag[0] ? "Yes" : "No");
gf_isom_apple_get_tag 2926 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_CREATED, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tCreated: %s\n", tag);
gf_isom_apple_get_tag 2927 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_DISK, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tDisk: %d / %d\n", tag[3], tag[5]);
gf_isom_apple_get_tag 2928 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_TOOL, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tEncoder Software: %s\n", tag);
gf_isom_apple_get_tag 2929 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_ENCODER, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tEncoded by: %s\n", tag);
gf_isom_apple_get_tag 2930 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_TEMPO, &tag, &tag_len)==GF_OK) {
gf_isom_apple_get_tag 2937 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_TRACKNUMBER, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tTrackNumber: %d / %d\n", (0xff00 & (tag[2]<<8)) | (0xff & tag[3]), (0xff00 & (tag[4]<<8)) | (0xff & tag[5]));
gf_isom_apple_get_tag 2938 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_TRACK, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tTrack: %s\n", tag);
gf_isom_apple_get_tag 2939 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_GROUP, &tag, &tag_len)==GF_OK) fprintf(stderr, "\tGroup: %s\n", tag);
gf_isom_apple_get_tag 2941 applications/mp4box/filedump.c 		if (gf_isom_apple_get_tag(file, GF_ISOM_ITUNE_COVER_ART, &tag, &tag_len)==GF_OK) {
gf_isom_apple_get_tag 2417 include/gpac/isomedia.h GF_Err gf_isom_apple_get_tag(GF_ISOFile *mov, u32 tag, const char **data, u32 *data_len);
gf_isom_apple_get_tag  225 modules/isom_in/load.c 	if (gf_isom_apple_get_tag(read->mov, GF_ISOM_ITUNE_COVER_ART, &tag, &tlen)==GF_OK) {
gf_isom_apple_get_tag 1030 modules/isom_in/read.c 		if (gf_isom_apple_get_tag(read->mov, GF_ISOM_ITUNE_NAME, &tag, &tag_len)==GF_OK) com->info.name = tag;
gf_isom_apple_get_tag 1031 modules/isom_in/read.c 		if (gf_isom_apple_get_tag(read->mov, GF_ISOM_ITUNE_ARTIST, &tag, &tag_len)==GF_OK) com->info.artist = tag;
gf_isom_apple_get_tag 1032 modules/isom_in/read.c 		if (gf_isom_apple_get_tag(read->mov, GF_ISOM_ITUNE_ALBUM, &tag, &tag_len)==GF_OK) com->info.album = tag;
gf_isom_apple_get_tag 1033 modules/isom_in/read.c 		if (gf_isom_apple_get_tag(read->mov, GF_ISOM_ITUNE_COMMENT, &tag, &tag_len)==GF_OK) com->info.comment = tag;
gf_isom_apple_get_tag 1034 modules/isom_in/read.c 		if (gf_isom_apple_get_tag(read->mov, GF_ISOM_ITUNE_TRACK, &tag, &tag_len)==GF_OK) {
gf_isom_apple_get_tag 1037 modules/isom_in/read.c 		if (gf_isom_apple_get_tag(read->mov, GF_ISOM_ITUNE_COMPOSER, &tag, &tag_len)==GF_OK) com->info.composer = tag;
gf_isom_apple_get_tag 1038 modules/isom_in/read.c 		if (gf_isom_apple_get_tag(read->mov, GF_ISOM_ITUNE_WRITER, &tag, &tag_len)==GF_OK) com->info.writer = tag;
gf_isom_apple_get_tag 1039 modules/isom_in/read.c 		if (gf_isom_apple_get_tag(read->mov, GF_ISOM_ITUNE_GENRE, &tag, &tag_len)==GF_OK) {
gf_isom_apple_get_tag 3170 src/media_tools/isom_tools.c 	if (gf_isom_apple_get_tag(input, 0, &tag, &tag_len) == GF_OK) {
gf_isom_apple_get_tag 3172 src/media_tools/isom_tools.c 			if (gf_isom_apple_get_tag(input, GF_ISOM_ITUNE_NAME, &tag, &tag_len)==GF_OK)