Commit f320f2f4 authored by Michael Niedermayer's avatar Michael Niedermayer

cmdutils: Ask for a sample in case a odd rotation angle is encountered

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 5d309d30
......@@ -2249,6 +2249,9 @@ double get_rotation(AVStream *st)
theta -= 360*floor(theta/360 + 0.9/360);
if (fabs(theta - 90*round(theta/90)) > 2)
av_log_ask_for_sample(NULL, "Odd rotation angle\n");
return theta;
}
......
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