Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
a893655b
Commit
a893655b
authored
12 years ago
by
Nathan Caldwell
Committed by
Luca Barbato
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
avutil: Add AVERROR_EXPERIMENTAL
Signed-off-by:
Luca Barbato
<
lu_zero@gentoo.org
>
parent
a4aa20fb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
doc/APIchanges
+3
-0
3 additions, 0 deletions
doc/APIchanges
libavutil/error.c
+1
-0
1 addition, 0 deletions
libavutil/error.c
libavutil/error.h
+1
-0
1 addition, 0 deletions
libavutil/error.h
libavutil/version.h
+1
-1
1 addition, 1 deletion
libavutil/version.h
with
6 additions
and
1 deletion
doc/APIchanges
+
3
−
0
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
...
...
This diff is collapsed.
Click to expand it.
libavutil/error.c
+
1
−
0
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
)
{
...
...
This diff is collapsed.
Click to expand it.
libavutil/error.h
+
1
−
0
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.
...
...
This diff is collapsed.
Click to expand it.
libavutil/version.h
+
1
−
1
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, \
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment