Extract rotation in MOV metadata

pull/2/head
Dave Badia 14 years ago committed by Michael Niedermayer
parent 0fd82fedc9
commit d3cef0a85b
  1. 4
      libavformat/mov.c

@ -1926,6 +1926,10 @@ static int mov_read_tkhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
sc->width = width >> 16; sc->width = width >> 16;
sc->height = height >> 16; sc->height = height >> 16;
if (display_matrix[0][0] == -65536 && display_matrix[1][1] == -65536) {
av_metadata_set2(&st->metadata, "rotate", "180", 0);
}
// transform the display width/height according to the matrix // transform the display width/height according to the matrix
// skip this if the display matrix is the default identity matrix // skip this if the display matrix is the default identity matrix
// or if it is rotating the picture, ex iPhone 3GS // or if it is rotating the picture, ex iPhone 3GS

Loading…
Cancel
Save