[vlc-commits] AVcodec: use the proper version number for HEVC
Jean-Baptiste Kempf
git at videolan.org
Sun Nov 3 11:15:45 CET 2013
vlc/vlc-2.1 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Nov 3 11:02:37 2013 +0100| [e28ed75216f762e2832cbe682e3035e5f7dd799c] | committer: Jean-Baptiste Kempf
AVcodec: use the proper version number for HEVC
(cherry picked from commit 50c01bdb100f2fba51ff797d65f4897f832460a9)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=e28ed75216f762e2832cbe682e3035e5f7dd799c
---
modules/codec/avcodec/fourcc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/codec/avcodec/fourcc.c b/modules/codec/avcodec/fourcc.c
index ed49ae2..2335062 100644
--- a/modules/codec/avcodec/fourcc.c
+++ b/modules/codec/avcodec/fourcc.c
@@ -221,7 +221,7 @@ static const struct
{ VLC_CODEC_MSS2, AV_CODEC_ID_MSS2, VIDEO_ES },
#endif
-#ifdef AV_CODEC_ID_H265 // FFmpeg 55.37.100
+#if LIBAVCODEC_VERSION_CHECK( 55, 24, 0, 37, 100 )
{ VLC_CODEC_HEVC, AV_CODEC_ID_HEVC, VIDEO_ES },
#endif
More information about the vlc-commits
mailing list