Changeset cf70ba37 in ffmpeg
- Timestamp:
- Jan 14, 2015, 4:17:23 PM (10 years ago)
- Branches:
- master
- Children:
- 89b6382, e2ad0b66
- Parents:
- 1e763454
- git-author:
- Vittorio Giovara <vittorio.giovara@gmail.com> (01/09/15 10:24:22)
- git-committer:
- Vittorio Giovara <vittorio.giovara@gmail.com> (01/14/15 16:17:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libavformat/mov.c
r1e763454 rcf70ba37 36 36 #include "libavutil/avstring.h" 37 37 #include "libavutil/dict.h" 38 #include "libavutil/display.h" 38 39 #include "libavutil/opt.h" 39 40 #include "libavcodec/ac3tab.h" … … 2579 2580 2580 2581 // transform the display width/height according to the matrix 2581 // skip this if the display matrix is the default identity matrix 2582 // or if it is rotating the picture, ex iPhone 3GS 2582 // skip this if the rotation angle is 0 degrees 2583 2583 // to keep the same scale, use [width height 1<<16] 2584 if (width && height && 2585 ((display_matrix[0][0] != 65536 || 2586 display_matrix[1][1] != 65536) && 2587 !display_matrix[0][1] && 2588 !display_matrix[1][0] && 2589 !display_matrix[2][0] && !display_matrix[2][1])) { 2584 if (width && height && sc->display_matrix && 2585 av_display_rotation_get(sc->display_matrix) != 0.0f) { 2590 2586 for (i = 0; i < 2; i++) 2591 2587 disp_transform[i] =
Note:
See TracChangeset
for help on using the changeset viewer.