diff options
author | matthew <[email protected]> | 2017-10-08 12:27:36 -0400 |
---|---|---|
committer | matthew <[email protected]> | 2017-10-08 12:27:36 -0400 |
commit | fce772c22430a86ed0c2b0a5569692b54e25d3c5 (patch) | |
tree | 7e2bffccceb64436d04009283d33de406d2c8910 /libhb/muxavformat.c | |
parent | ad87500c595d7dfdbdae7651500eca8491e35396 (diff) |
updated libhb muxavformat.c to match values provided by sr55 gist.
Diffstat (limited to 'libhb/muxavformat.c')
-rw-r--r-- | libhb/muxavformat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c index c4a37a748..ffb70d403 100644 --- a/libhb/muxavformat.c +++ b/libhb/muxavformat.c @@ -214,7 +214,7 @@ static int avformatInit( hb_mux_object_t * m ) case HB_VCODEC_X264_8BIT: case HB_VCODEC_X264_10BIT: case HB_VCODEC_QSV_H264: - case HB_VCODEC_H264_NVENC: + case HB_VCODEC_FFMPEG_H264: track->st->codecpar->codec_id = AV_CODEC_ID_H264; /* Taken from x264 muxers.c */ @@ -332,7 +332,7 @@ static int avformatInit( hb_mux_object_t * m ) case HB_VCODEC_X265_16BIT: case HB_VCODEC_QSV_H265: case HB_VCODEC_QSV_H265_10BIT: - case HB_VCODEC_HEVC_NVENC: + case HB_VCODEC_FFMPEG_H265: track->st->codecpar->codec_id = AV_CODEC_ID_HEVC; track->st->codecpar->codec_tag = MKTAG('h','v','c','1'); |