Skip to content
Snippets Groups Projects
Commit 18d915dd authored by Zuxy Meng's avatar Zuxy Meng Committed by Diego Biurrun
Browse files

cosmetics: Fix indentation after last commit, patch by Zuxy Meng.

Originally committed as revision 8917 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 660e83f8
No related branches found
No related tags found
No related merge requests found
...@@ -514,9 +514,9 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap) ...@@ -514,9 +514,9 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
if (!codec->bit_rate) if (!codec->bit_rate)
codec->bit_rate = bitrate[i]; codec->bit_rate = bitrate[i];
if (dar[i].num > 0 && dar[i].den > 0) if (dar[i].num > 0 && dar[i].den > 0)
av_reduce(&codec->sample_aspect_ratio.num, av_reduce(&codec->sample_aspect_ratio.num,
&codec->sample_aspect_ratio.den, &codec->sample_aspect_ratio.den,
dar[i].num, dar[i].den, INT_MAX); dar[i].num, dar[i].den, INT_MAX);
//av_log(NULL, AV_LOG_ERROR, "dar %d:%d sar=%d:%d\n", dar[i].num, dar[i].den, codec->sample_aspect_ratio.num, codec->sample_aspect_ratio.den); //av_log(NULL, AV_LOG_ERROR, "dar %d:%d sar=%d:%d\n", dar[i].num, dar[i].den, codec->sample_aspect_ratio.num, codec->sample_aspect_ratio.den);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment