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
8d67218b
Commit
8d67218b
authored
13 years ago
by
Stefano Sabatini
Committed by
Diego Biurrun
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
error: sort, pack, and align error code and string definitions
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
ab1adff7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavutil/error.c
+12
-12
12 additions, 12 deletions
libavutil/error.c
libavutil/error.h
+8
-12
8 additions, 12 deletions
libavutil/error.h
with
20 additions
and
24 deletions
libavutil/error.c
+
12
−
12
View file @
8d67218b
...
...
@@ -25,19 +25,19 @@ int av_strerror(int errnum, char *errbuf, size_t errbuf_size)
const
char
*
errstr
=
NULL
;
switch
(
errnum
)
{
case
AVERROR_EOF
:
errstr
=
"End of file"
;
break
;
case
AVERROR_INVALIDDATA
:
errstr
=
"Invalid data found when processing input"
;
break
;
case
AVERROR_BSF_NOT_FOUND
:
errstr
=
"Bitstream filter not found"
;
break
;
case
AVERROR_DECODER_NOT_FOUND
:
errstr
=
"Decoder not found"
;
break
;
case
AVERROR_DEMUXER_NOT_FOUND
:
errstr
=
"Demuxer not found"
;
break
;
case
AVERROR_ENCODER_NOT_FOUND
:
errstr
=
"Encoder not found"
;
break
;
case
AVERROR_EOF
:
errstr
=
"End of file"
;
break
;
case
AVERROR_EXIT
:
errstr
=
"Immediate exit requested"
;
break
;
case
AVERROR_FILTER_NOT_FOUND
:
errstr
=
"Filter not found"
;
break
;
case
AVERROR_INVALIDDATA
:
errstr
=
"Invalid data found when processing input"
;
break
;
case
AVERROR_MUXER_NOT_FOUND
:
errstr
=
"Muxer not found"
;
break
;
case
AVERROR_OPTION_NOT_FOUND
:
errstr
=
"Option not found"
;
break
;
case
AVERROR_PATCHWELCOME
:
errstr
=
"Not yet implemented in Libav, patches welcome"
;
break
;
case
AVERROR_DEMUXER_NOT_FOUND
:
errstr
=
"Demuxer not found"
;
break
;
case
AVERROR_MUXER_NOT_FOUND
:
errstr
=
"Muxer not found"
;
break
;
case
AVERROR_DECODER_NOT_FOUND
:
errstr
=
"Decoder not found"
;
break
;
case
AVERROR_ENCODER_NOT_FOUND
:
errstr
=
"Encoder not found"
;
break
;
case
AVERROR_OPTION_NOT_FOUND
:
errstr
=
"Option not found"
;
break
;
case
AVERROR_PROTOCOL_NOT_FOUND
:
errstr
=
"Protocol not found"
;
break
;
case
AVERROR_FILTER_NOT_FOUND
:
errstr
=
"Filter not found"
;
break
;
case
AVERROR_BSF_NOT_FOUND
:
errstr
=
"Bitstream filter not found"
;
break
;
case
AVERROR_STREAM_NOT_FOUND
:
errstr
=
"Stream not found"
;
break
;
case
AVERROR_EXIT
:
errstr
=
"Immediate exit requested"
;
break
;
case
AVERROR_PROTOCOL_NOT_FOUND
:
errstr
=
"Protocol not found"
;
break
;
case
AVERROR_STREAM_NOT_FOUND
:
errstr
=
"Stream not found"
;
break
;
}
if
(
errstr
)
{
...
...
This diff is collapsed.
Click to expand it.
libavutil/error.h
+
8
−
12
View file @
8d67218b
...
...
@@ -37,24 +37,20 @@
#define AVUNERROR(e) (e)
#endif
#define AVERROR_EOF (-MKTAG('E','O','F',' ')) ///< End of file
#define AVERROR_PATCHWELCOME (-MKTAG('P','A','W','E')) ///< Not yet implemented in Libav, patches welcome
#define AVERROR_INVALIDDATA (-MKTAG('I','N','D','A')) ///< Invalid data found when processing input
#define AVERROR_DEMUXER_NOT_FOUND (-MKTAG(0xF8,'D','E','M')) ///< Demuxer not found
#define AVERROR_MUXER_NOT_FOUND (-MKTAG(0xF8,'M','U','X')) ///< Muxer not found
#define AVERROR_BSF_NOT_FOUND (-MKTAG(0xF8,'B','S','F')) ///< Bitstream filter not found
#define AVERROR_DECODER_NOT_FOUND (-MKTAG(0xF8,'D','E','C')) ///< Decoder not found
#define AVERROR_DEMUXER_NOT_FOUND (-MKTAG(0xF8,'D','E','M')) ///< Demuxer not found
#define AVERROR_ENCODER_NOT_FOUND (-MKTAG(0xF8,'E','N','C')) ///< Encoder not found
#define AVERROR_EOF (-MKTAG( 'E','O','F',' ')) ///< End of file
#define AVERROR_EXIT (-MKTAG( 'E','X','I','T')) ///< Immediate exit was requested; the called function should not be restarted
#define AVERROR_FILTER_NOT_FOUND (-MKTAG(0xF8,'F','I','L')) ///< Filter not found
#define AVERROR_INVALIDDATA (-MKTAG( 'I','N','D','A')) ///< Invalid data found when processing input
#define AVERROR_MUXER_NOT_FOUND (-MKTAG(0xF8,'M','U','X')) ///< Muxer not found
#define AVERROR_OPTION_NOT_FOUND (-MKTAG(0xF8,'O','P','T')) ///< Option not found
#define AVERROR_PATCHWELCOME (-MKTAG( 'P','A','W','E')) ///< Not yet implemented in Libav, patches welcome
#define AVERROR_PROTOCOL_NOT_FOUND (-MKTAG(0xF8,'P','R','O')) ///< Protocol not found
#define AVERROR_FILTER_NOT_FOUND (-MKTAG(0xF8,'F','I','L')) ///< Filter not found
#define AVERROR_BSF_NOT_FOUND (-MKTAG(0xF8,'B','S','F')) ///< Bitstream filter not found
#define AVERROR_STREAM_NOT_FOUND (-MKTAG(0xF8,'S','T','R')) ///< Stream not found
#define AVERROR_EXIT (-MKTAG('E','X','I','T')) ///< Immediate exit was requested; the called function should not be restarted
/**
* Put a description of the AVERROR code errnum in errbuf.
* In case of failure the global variable errno is set to indicate the
...
...
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