Lines Matching defs:chap
751 ID3v2ExtraMetaCHAP *chap = obj;
752 av_freep(&chap->element_id);
753 av_dict_free(&chap->meta);
762 ID3v2ExtraMetaCHAP *chap = NULL;
768 chap = &new_extra->data.chap;
770 if (decode_str(s, pb, 0, &chap->element_id, &len) < 0)
776 chap->start = avio_rb32(pb);
777 chap->end = avio_rb32(pb);
791 read_ttag(s, pb, taglen, &chap->meta, tag);
797 ff_metadata_conv(&chap->meta, NULL, ff_id3v2_34_metadata_conv);
798 ff_metadata_conv(&chap->meta, NULL, ff_id3v2_4_metadata_conv);
806 free_chapter(chap);
1261 ID3v2ExtraMetaCHAP *chap;
1267 chap = &cur->data.chap;
1268 chapter = avpriv_new_chapter(s, i++, time_base, chap->start,
1269 chap->end, chap->element_id);
1273 if ((ret = av_dict_copy(&chapter->metadata, chap->meta, 0)) < 0)