Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
78071a14
Commit
78071a14
authored
Oct 06, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pixfmt: add AV_ prefixes to PIX_FMT_*
parent
7b556be6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
311 additions
and
131 deletions
+311
-131
APIchanges
doc/APIchanges
+8
-0
Makefile
libavutil/Makefile
+1
-0
old_pix_fmts.h
libavutil/old_pix_fmts.h
+128
-0
pixfmt.h
libavutil/pixfmt.h
+169
-129
version.h
libavutil/version.h
+5
-2
No files found.
doc/APIchanges
View file @
78071a14
...
...
@@ -13,6 +13,14 @@ libavutil: 2011-04-18
API changes, most recent first:
2012-10-xx - xxxxxxx - lavu 51.42.0 - pixfmt.h
Rename PixelFormat to AVPixelFormat and all PIX_FMT_* to AV_PIX_FMT_*.
To provide backwards compatibility, PixelFormat is now #defined as
AVPixelFormat.
Note that this can break user code that includes pixfmt.h and uses the
'PixelFormat' identifier. Such code should either #undef PixelFormat
or stop using the PixelFormat name.
2012-10-05 - e7ba5b1 - lavr 1.0.0 - avresample.h
Data planes parameters to avresample_convert() and
avresample_read() are now uint8_t** instead of void**.
...
...
libavutil/Makefile
View file @
78071a14
...
...
@@ -29,6 +29,7 @@ HEADERS = adler32.h \
md5.h
\
mem.h
\
dict.h
\
old_pix_fmt.h
\
opt.h
\
parseutils.h
\
pixdesc.h
\
...
...
libavutil/old_pix_fmts.h
0 → 100644
View file @
78071a14
This diff is collapsed.
Click to expand it.
libavutil/pixfmt.h
View file @
78071a14
This diff is collapsed.
Click to expand it.
libavutil/version.h
View file @
78071a14
...
...
@@ -37,8 +37,8 @@
*/
#define LIBAVUTIL_VERSION_MAJOR 51
#define LIBAVUTIL_VERSION_MINOR 4
1
#define LIBAVUTIL_VERSION_MICRO
1
#define LIBAVUTIL_VERSION_MINOR 4
2
#define LIBAVUTIL_VERSION_MICRO
0
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
LIBAVUTIL_VERSION_MINOR, \
...
...
@@ -73,6 +73,9 @@
#ifndef FF_API_OLD_AVOPTIONS
#define FF_API_OLD_AVOPTIONS (LIBAVUTIL_VERSION_MAJOR < 52)
#endif
#ifndef FF_API_PIX_FMT
#define FF_API_PIX_FMT (LIBAVUTIL_VERSION_MAJOR < 52)
#endif
/**
* @}
...
...
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