mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge commit '2a41826bea3833895dc06939831b7f35ca1f597e'
* commit '2a41826bea3833895dc06939831b7f35ca1f597e':
lavc: add HEVC profiles names
Conflicts:
libavcodec/hevc.c
libavcodec/version.h
See: fb7d70c1cd
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
d6b7ea06f1
@ -37,6 +37,9 @@ API changes, most recent first:
|
|||||||
2013-11-XX - xxxxxxx - lavu 52.54.100 - avstring.h
|
2013-11-XX - xxxxxxx - lavu 52.54.100 - avstring.h
|
||||||
Add av_utf8_decode() function.
|
Add av_utf8_decode() function.
|
||||||
|
|
||||||
|
2013-11-22 - fb7d70c - lavc 55.44.100 - avcodec.h
|
||||||
|
Add HEVC profiles
|
||||||
|
|
||||||
2013-11-xx - xxxxxxx - lavc 55.44.100 - avcodec.h
|
2013-11-xx - xxxxxxx - lavc 55.44.100 - avcodec.h
|
||||||
Add av_packet_{un,}pack_dictionary()
|
Add av_packet_{un,}pack_dictionary()
|
||||||
Add AV_PKT_METADATA_UPDATE side data type, used to transmit key/value
|
Add AV_PKT_METADATA_UPDATE side data type, used to transmit key/value
|
||||||
|
@ -2985,8 +2985,8 @@ static void hevc_decode_flush(AVCodecContext *avctx)
|
|||||||
|
|
||||||
static const AVProfile profiles[] = {
|
static const AVProfile profiles[] = {
|
||||||
{ FF_PROFILE_HEVC_MAIN, "Main" },
|
{ FF_PROFILE_HEVC_MAIN, "Main" },
|
||||||
{ FF_PROFILE_HEVC_MAIN_10, "Main10" },
|
{ FF_PROFILE_HEVC_MAIN_10, "Main 10" },
|
||||||
{ FF_PROFILE_HEVC_MAIN_STILL_PICTURE, "MainStillPicture" },
|
{ FF_PROFILE_HEVC_MAIN_STILL_PICTURE, "Main Still Picture" },
|
||||||
{ FF_PROFILE_UNKNOWN },
|
{ FF_PROFILE_UNKNOWN },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
#define LIBAVCODEC_VERSION_MAJOR 55
|
#define LIBAVCODEC_VERSION_MAJOR 55
|
||||||
#define LIBAVCODEC_VERSION_MINOR 45
|
#define LIBAVCODEC_VERSION_MINOR 45
|
||||||
#define LIBAVCODEC_VERSION_MICRO 102
|
#define LIBAVCODEC_VERSION_MICRO 103
|
||||||
|
|
||||||
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
||||||
LIBAVCODEC_VERSION_MINOR, \
|
LIBAVCODEC_VERSION_MINOR, \
|
||||||
|
Loading…
Reference in New Issue
Block a user