Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
980a5b01
Commit
980a5b01
authored
Aug 20, 2014
by
Clément Bœsch
Committed by
Clément Bœsch
Aug 21, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avutil/motion_vector.h: fix coordinate types
See
b0352b19
for more information on the feature.
parent
32cb6c1f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
APIchanges
doc/APIchanges
+1
-1
motion_vector.h
libavutil/motion_vector.h
+4
-4
version.h
libavutil/version.h
+1
-1
No files found.
doc/APIchanges
View file @
980a5b01
...
...
@@ -15,7 +15,7 @@ libavutil: 2014-08-09
API changes, most recent first:
2014-08-xx - xxxxxxx - lavu 54.
5
.100 - frame.h motion_vector.h
2014-08-xx - xxxxxxx - lavu 54.
6
.100 - frame.h motion_vector.h
Add AV_FRAME_DATA_MOTION_VECTORS side data and AVMotionVector structure
2014-08-16 - xxxxxxx - lswr 1.1.100 - swresample.h
...
...
libavutil/motion_vector.h
View file @
980a5b01
...
...
@@ -33,13 +33,13 @@ typedef struct AVMotionVector {
*/
uint8_t
w
,
h
;
/**
* Absolute source position.
* Absolute source position.
Can be outside the frame area.
*/
u
int16_t
src_x
,
src_y
;
int16_t
src_x
,
src_y
;
/**
* Absolute destination position.
* Absolute destination position.
Can be outside the frame area.
*/
u
int16_t
dst_x
,
dst_y
;
int16_t
dst_x
,
dst_y
;
/**
* Extra flag information.
* Currently unused.
...
...
libavutil/version.h
View file @
980a5b01
...
...
@@ -56,7 +56,7 @@
*/
#define LIBAVUTIL_VERSION_MAJOR 54
#define LIBAVUTIL_VERSION_MINOR
5
#define LIBAVUTIL_VERSION_MINOR
6
#define LIBAVUTIL_VERSION_MICRO 100
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment