Skip to content

Commit

Permalink
Fix HEVC stream info detection in GUI (#115)
Browse files Browse the repository at this point in the history
* Fix FPS and other HEVC stream info detection in GUI

* Fix FPS and other HEVC stream info detection in GUI
  • Loading branch information
jcdr428 authored and lighterowl committed Jan 7, 2020
1 parent 08040e8 commit 2061c2e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tsMuxer/metaDemuxer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,9 @@ DetectStreamRez METADemuxer::DetectStreamReader(BufferedReaderManager& readManag
if (trackRez.codecInfo.programName == "V_MS/VFW/WVC1" ||
trackRez.codecInfo.programName == "V_MPEG-2" ||
trackRez.codecInfo.programName == "V_MPEG4/ISO/AVC" ||
trackRez.codecInfo.programName == "V_MPEG4/ISO/MVC")
trackRez.codecInfo.programName == "V_MPEG4/ISO/MVC" ||
trackRez.codecInfo.programName == "V_MPEGH/ISO/HEVC"
)
{
size_t frPos = trackRez.streamDescr.find("Frame rate: not found");
if (frPos != string::npos)
Expand Down

0 comments on commit 2061c2e

Please sign in to comment.