Commit 3981f262 authored by Paul B Mahol's avatar Paul B Mahol

avformat/mxfdec: fix indentation

parent 34cab708
...@@ -2070,15 +2070,15 @@ static int mxf_parse_physical_source_package(MXFContext *mxf, MXFTrack *source_t ...@@ -2070,15 +2070,15 @@ static int mxf_parse_physical_source_package(MXFContext *mxf, MXFTrack *source_t
continue; continue;
} }
if (physical_track->edit_rate.num <= 0 || if (physical_track->edit_rate.num <= 0 ||
physical_track->edit_rate.den <= 0) { physical_track->edit_rate.den <= 0) {
av_log(mxf->fc, AV_LOG_WARNING, av_log(mxf->fc, AV_LOG_WARNING,
"Invalid edit rate (%d/%d) found on structural" "Invalid edit rate (%d/%d) found on structural"
" component #%d, defaulting to 25/1\n", " component #%d, defaulting to 25/1\n",
physical_track->edit_rate.num, physical_track->edit_rate.num,
physical_track->edit_rate.den, i); physical_track->edit_rate.den, i);
physical_track->edit_rate = (AVRational){25, 1}; physical_track->edit_rate = (AVRational){25, 1};
} }
for (k = 0; k < physical_track->sequence->structural_components_count; k++) { for (k = 0; k < physical_track->sequence->structural_components_count; k++) {
if (!(mxf_tc = mxf_resolve_timecode_component(mxf, &physical_track->sequence->structural_components_refs[k]))) if (!(mxf_tc = mxf_resolve_timecode_component(mxf, &physical_track->sequence->structural_components_refs[k])))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment