avformat/imf_cpl: fix indention after previous commit
This commit is contained in:
parent
39800d78b0
commit
d28bec8c4d
@ -711,29 +711,29 @@ static int fill_virtual_tracks(void *log_ctx, xmlNodePtr cpl_element, FFIMFCPL *
|
|||||||
sequence_list_elem = ff_imf_xml_get_child_element_by_name(segment_elem, "SequenceList");
|
sequence_list_elem = ff_imf_xml_get_child_element_by_name(segment_elem, "SequenceList");
|
||||||
if (sequence_list_elem) {
|
if (sequence_list_elem) {
|
||||||
|
|
||||||
sequence_elem = xmlFirstElementChild(sequence_list_elem);
|
sequence_elem = xmlFirstElementChild(sequence_list_elem);
|
||||||
while (sequence_elem) {
|
while (sequence_elem) {
|
||||||
if (xmlStrcmp(sequence_elem->name, "MarkerSequence") == 0)
|
if (xmlStrcmp(sequence_elem->name, "MarkerSequence") == 0)
|
||||||
ret = push_marker_sequence(log_ctx, sequence_elem, cpl);
|
ret = push_marker_sequence(log_ctx, sequence_elem, cpl);
|
||||||
|
|
||||||
else if (xmlStrcmp(sequence_elem->name, "MainImageSequence") == 0)
|
else if (xmlStrcmp(sequence_elem->name, "MainImageSequence") == 0)
|
||||||
ret = push_main_image_2d_sequence(log_ctx, sequence_elem, cpl);
|
ret = push_main_image_2d_sequence(log_ctx, sequence_elem, cpl);
|
||||||
|
|
||||||
else if (xmlStrcmp(sequence_elem->name, "MainAudioSequence") == 0)
|
else if (xmlStrcmp(sequence_elem->name, "MainAudioSequence") == 0)
|
||||||
ret = push_main_audio_sequence(log_ctx, sequence_elem, cpl);
|
ret = push_main_audio_sequence(log_ctx, sequence_elem, cpl);
|
||||||
|
|
||||||
else
|
else
|
||||||
av_log(log_ctx,
|
av_log(log_ctx,
|
||||||
AV_LOG_INFO,
|
AV_LOG_INFO,
|
||||||
"The following Sequence is not supported and is ignored: %s\n",
|
"The following Sequence is not supported and is ignored: %s\n",
|
||||||
sequence_elem->name);
|
sequence_elem->name);
|
||||||
|
|
||||||
/* abort parsing only if memory error occurred */
|
/* abort parsing only if memory error occurred */
|
||||||
if (ret == AVERROR(ENOMEM))
|
if (ret == AVERROR(ENOMEM))
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
sequence_elem = xmlNextElementSibling(sequence_elem);
|
sequence_elem = xmlNextElementSibling(sequence_elem);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
segment_elem = xmlNextElementSibling(segment_elem);
|
segment_elem = xmlNextElementSibling(segment_elem);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user