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
a893655b
Commit
a893655b
authored
Oct 19, 2012
by
Nathan Caldwell
Committed by
Luca Barbato
Oct 21, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avutil: Add AVERROR_EXPERIMENTAL
Signed-off-by:
Luca Barbato
<
lu_zero@gentoo.org
>
parent
a4aa20fb
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
1 deletion
+6
-1
APIchanges
doc/APIchanges
+3
-0
error.c
libavutil/error.c
+1
-0
error.h
libavutil/error.h
+1
-0
version.h
libavutil/version.h
+1
-1
No files found.
doc/APIchanges
View file @
a893655b
...
...
@@ -13,6 +13,9 @@ libavutil: 2011-04-18
API changes, most recent first:
2012-10-18 - xxxxxxx - lavu 51.45.0 - error.h
Add AVERROR_EXPERIMENTAL
2012-10-12 - xxxxxxx - lavu 51.44.0 - pixdesc.h
Add functions for accessing pixel format descriptors.
Accessing the av_pix_fmt_descriptors array directly is now
...
...
libavutil/error.c
View file @
a893655b
...
...
@@ -41,6 +41,7 @@ int av_strerror(int errnum, char *errbuf, size_t errbuf_size)
case
AVERROR_STREAM_NOT_FOUND
:
errstr
=
"Stream not found"
;
break
;
case
AVERROR_BUG
:
errstr
=
"Bug detected, please report the issue"
;
break
;
case
AVERROR_UNKNOWN
:
errstr
=
"Unknown error occurred"
;
break
;
case
AVERROR_EXPERIMENTAL
:
errstr
=
"Experimental feature"
;
break
;
}
if
(
errstr
)
{
...
...
libavutil/error.h
View file @
a893655b
...
...
@@ -60,6 +60,7 @@
#define AVERROR_STREAM_NOT_FOUND (-0x2dabac08) ///< Stream not found
#define AVERROR_BUG (-0x5fb8aabe) ///< Bug detected, please report the issue
#define AVERROR_UNKNOWN (-0x31b4b1ab) ///< Unknown error, typically from an external library
#define AVERROR_EXPERIMENTAL (-0x2bb2afa8) ///< Requested feature is flagged experimental. Set strict_std_compliance if you really want to use it.
/**
* Put a description of the AVERROR code errnum in errbuf.
...
...
libavutil/version.h
View file @
a893655b
...
...
@@ -37,7 +37,7 @@
*/
#define LIBAVUTIL_VERSION_MAJOR 51
#define LIBAVUTIL_VERSION_MINOR 4
4
#define LIBAVUTIL_VERSION_MINOR 4
5
#define LIBAVUTIL_VERSION_MICRO 0
#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