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
83b46713
Commit
83b46713
authored
Dec 17, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: Check codec_ids against insertion/removial typos
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
75f2cc51
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
utils.c
libavcodec/utils.c
+7
-0
No files found.
libavcodec/utils.c
View file @
83b46713
...
...
@@ -33,6 +33,7 @@
#include "libavutil/imgutils.h"
#include "libavutil/samplefmt.h"
#include "libavutil/dict.h"
#include "libavutil/avassert.h"
#include "avcodec.h"
#include "dsputil.h"
#include "libavutil/opt.h"
...
...
@@ -1374,6 +1375,12 @@ const char *av_get_profile_name(const AVCodec *codec, int profile)
unsigned
avcodec_version
(
void
)
{
av_assert0
(
CODEC_ID_V410
==
164
);
av_assert0
(
CODEC_ID_PCM_S8_PLANAR
==
65563
);
av_assert0
(
CODEC_ID_ADPCM_G722
==
69660
);
av_assert0
(
CODEC_ID_BMV_AUDIO
==
86071
);
av_assert0
(
CODEC_ID_SRT
==
94216
);
return
LIBAVCODEC_VERSION_INT
;
}
...
...
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