add support for H265 supplemental

Origin commit data
------------------
Branch: master
Commit: fe78a13e05
Author: TangoCash <eric@loxat.de>
Date: 2016-07-24 (Sun, 24 Jul 2016)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
TangoCash
2016-07-24 17:44:27 +02:00
parent f9ceeeb09f
commit 6239607b1b

View File

@@ -725,9 +725,15 @@ int cVideo::SetStreamType(VIDEO_FORMAT type)
switch (type) switch (type)
{ {
case VIDEO_FORMAT_MPEG4: case VIDEO_FORMAT_MPEG4_H264:
t = VIDEO_STREAMTYPE_MPEG4_H264; t = VIDEO_STREAMTYPE_MPEG4_H264;
break; break;
case VIDEO_FORMAT_MPEG4_H265:
t = VIDEO_STREAMTYPE_H265_HEVC;
break;
case VIDEO_FORMAT_AVS:
t = VIDEO_STREAMTYPE_AVS;
break;
case VIDEO_FORMAT_VC1: case VIDEO_FORMAT_VC1:
t = VIDEO_STREAMTYPE_VC1; t = VIDEO_STREAMTYPE_VC1;
break; break;