diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2016-06-25 22:24:13 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2016-06-25 23:05:17 +0200 |
commit | 888a5c794778a2f2aad22e9b4a3952dff92b11fa (patch) | |
tree | 166aa2d553bb1e33fc64ecda29e8de21d1c35507 /libavcodec/version.h | |
parent | 6ee7adb881e4513ebacf76ba97d413fcbd6cf3e3 (diff) | |
download | ffmpeg-888a5c794778a2f2aad22e9b4a3952dff92b11fa.tar.gz |
avcodec/nvenc: Bring encoder names in line with other encoders
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index 0852b439fb..000026e1a5 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -28,7 +28,7 @@ #include "libavutil/version.h" #define LIBAVCODEC_VERSION_MAJOR 57 -#define LIBAVCODEC_VERSION_MINOR 46 +#define LIBAVCODEC_VERSION_MINOR 47 #define LIBAVCODEC_VERSION_MICRO 100 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ @@ -217,5 +217,8 @@ #ifndef FF_API_OLD_BSF #define FF_API_OLD_BSF (LIBAVCODEC_VERSION_MAJOR < 59) #endif +#ifndef FF_API_NVENC_OLD_NAME +#define FF_API_NVENC_OLD_NAME (LIBAVCODEC_VERSION_MAJOR < 59) +#endif #endif /* AVCODEC_VERSION_H */ |