Skip to content

Commit

Permalink
Fix orientation file parsing problem
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaomengbai committed Jul 21, 2018
1 parent e7559c5 commit ad64a7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libavfilter/vf_project.c
Original file line number Diff line number Diff line change
Expand Up @@ -773,9 +773,9 @@ static int filter_frame(AVFilterLink *link, AVFrame *frame)

if(args[0] > fr_t + s->tb)
break;
rotations[0] = args[1];
rotations[1] = args[2];
rotations[2] = args[3];
rotations[0] = args[2];
rotations[1] = args[3];
rotations[2] = 0.0f;
}
}

Expand Down

0 comments on commit ad64a7c

Please sign in to comment.