mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/tests/imf: add CPL timecode test
This commit is contained in:
parent
94922f6cab
commit
906219e3ca
|
@ -70,6 +70,11 @@ const char *cpl_doc =
|
|||
" <Id>urn:uuid:8e097bb0-cff7-4969-a692-bad47bfb528f</Id>"
|
||||
" </EssenceDescriptor>"
|
||||
"</EssenceDescriptorList>"
|
||||
"<CompositionTimecode>"
|
||||
"<TimecodeDropFrame>false</TimecodeDropFrame>"
|
||||
"<TimecodeRate>24</TimecodeRate>"
|
||||
"<TimecodeStartAddress>02:10:01.23</TimecodeStartAddress>"
|
||||
"</CompositionTimecode>"
|
||||
"<EditRate>24000 1001</EditRate>"
|
||||
"<SegmentList>"
|
||||
"<Segment>"
|
||||
|
@ -288,6 +293,7 @@ static int test_cpl_parsing(void)
|
|||
{
|
||||
xmlDocPtr doc;
|
||||
FFIMFCPL *cpl;
|
||||
char tc_buf[AV_TIMECODE_STR_SIZE];
|
||||
int ret;
|
||||
|
||||
doc = xmlReadMemory(cpl_doc, strlen(cpl_doc), NULL, NULL, 0);
|
||||
|
@ -306,6 +312,7 @@ static int test_cpl_parsing(void)
|
|||
printf("%s\n", cpl->content_title_utf8);
|
||||
printf(AV_PRI_URN_UUID "\n", AV_UUID_ARG(cpl->id_uuid));
|
||||
printf("%i %i\n", cpl->edit_rate.num, cpl->edit_rate.den);
|
||||
printf("%s\n", av_timecode_make_string(cpl->tc, tc_buf, 0));
|
||||
|
||||
printf("Marker resource count: %" PRIu32 "\n", cpl->main_markers_track->resource_count);
|
||||
for (uint32_t i = 0; i < cpl->main_markers_track->resource_count; i++) {
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
FFMPEG sample content
|
||||
urn:uuid:8713c020-2489-45f5-a9f7-87be539e20b5
|
||||
24000 1001
|
||||
02:10:01:23
|
||||
Marker resource count: 2
|
||||
Marker resource 0
|
||||
Marker 0
|
||||
|
|
Loading…
Reference in New Issue