Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
fbd676f3
Commit
fbd676f3
authored
Aug 16, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avcodec: require avutil 49.5.0
parent
7676c7b7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
configure.ac
configure.ac
+1
-1
modules/codec/avcodec/chroma.c
modules/codec/avcodec/chroma.c
+0
-2
No files found.
configure.ac
View file @
fbd676f3
...
...
@@ -2306,7 +2306,7 @@ dnl
AC_ARG_ENABLE(avcodec,
[ --enable-avcodec libavcodec codec (default enabled)])
AS_IF([test "${enable_avcodec}" != "no"], [
PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 52.25.0 libavutil],
PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 52.25.0 libavutil
>= 49.5.0
],
[
VLC_SAVE_FLAGS
CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
...
...
modules/codec/avcodec/chroma.c
View file @
fbd676f3
...
...
@@ -64,10 +64,8 @@ static const struct
{
VLC_CODEC_I444
,
PIX_FMT_YUV444P
,
0
,
0
,
0
},
{
VLC_CODEC_J444
,
PIX_FMT_YUVJ444P
,
0
,
0
,
0
},
#if LIBAVUTIL_VERSION_INT >= ((49<<16)+(5<<8)+0)
{
VLC_CODEC_I440
,
PIX_FMT_YUV440P
,
0
,
0
,
0
},
{
VLC_CODEC_J440
,
PIX_FMT_YUVJ440P
,
0
,
0
,
0
},
#endif
{
VLC_CODEC_I422
,
PIX_FMT_YUV422P
,
0
,
0
,
0
},
{
VLC_CODEC_J422
,
PIX_FMT_YUVJ422P
,
0
,
0
,
0
},
...
...
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