summaryrefslogtreecommitdiff
path: root/libavutil/motion_vector.h
Commit message (Collapse)AuthorAge
* avutil/motion_vector: export subpel motion informationClément Bœsch2015-11-23
| | | | FATE test changes because of the switch from shift to division.
* avutil/motion_vector.h: fix coordinate typesClément Bœsch2014-08-21
| | | | | See b0352b1997a83f1b6b27919b94aab539f099b25b for more information on the feature.
* avcodec: export motion vectors in frame side data on demandClément Bœsch2014-08-18
The reasoning behind this addition is that various third party applications are interested in getting some motion information out of a video "for free" when it is available. It was considered to export other information as well (such as the intra information about the block, or the quantization) but the structure might have ended up into a half full-generic, half full of codec specific cruft. If more information is necessary, it should either be added in the "flags" field of the AVMotionVector structure, or in another side-data. This commit also includes an example exporting them in a CSV stream.