mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-30 19:32:13 +00:00
Merge commit '50ea93158d4c480f64069e8bd1da388486dcf4ba'
* commit '50ea93158d4c480f64069e8bd1da388486dcf4ba':
Add libx265 encoder
Conflicts:
Changelog
LICENSE
configure
libavcodec/allcodecs.c
libavcodec/libx265.c
libavcodec/version.h
See: bb6b1731eb
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
86316039ab
@ -139,7 +139,7 @@ static av_cold int libx265_encode_init(AVCodecContext *avctx)
|
||||
if (!ctx->encoder) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Cannot open libx265 encoder.\n");
|
||||
libx265_encode_close(avctx);
|
||||
return AVERROR_EXTERNAL;
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
ret = x265_encoder_headers(ctx->encoder, &nal, &nnal);
|
||||
|
@ -30,7 +30,7 @@
|
||||
|
||||
#define LIBAVCODEC_VERSION_MAJOR 55
|
||||
#define LIBAVCODEC_VERSION_MINOR 52
|
||||
#define LIBAVCODEC_VERSION_MICRO 100
|
||||
#define LIBAVCODEC_VERSION_MICRO 101
|
||||
|
||||
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
||||
LIBAVCODEC_VERSION_MINOR, \
|
||||
|
Loading…
Reference in New Issue
Block a user