diff options
author | John Stebbins <[email protected]> | 2015-10-12 13:44:11 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2015-11-12 10:06:30 -0800 |
commit | 2c9d144740e0133cdf389ec814626439700b64f7 (patch) | |
tree | e6d847dd82bbaa02e618e34745b13b4eeeab7a83 /libhb/muxavformat.c | |
parent | 02585c6faf9163a1b1bab9ce537afb7044dc35f6 (diff) |
x265: add support for 10, 12, and 16 bit x265 libs
automatically pull in shared versions of these libs or allow statically
building against any one of them.
Diffstat (limited to 'libhb/muxavformat.c')
-rw-r--r-- | libhb/muxavformat.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c index 1bbece7be..aac09b764 100644 --- a/libhb/muxavformat.c +++ b/libhb/muxavformat.c @@ -324,7 +324,10 @@ static int avformatInit( hb_mux_object_t * m ) } } break; - case HB_VCODEC_X265: + case HB_VCODEC_X265_8BIT: + case HB_VCODEC_X265_10BIT: + case HB_VCODEC_X265_12BIT: + case HB_VCODEC_X265_16BIT: case HB_VCODEC_QSV_H265: track->st->codec->codec_id = AV_CODEC_ID_HEVC; |