File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 22
33| Version | Highlight |
44| ------ | --------- |
5+ | 0.23.0 | api-change: encode mode and optimization options |
56| 0.22.0 | feat: add codec string for AVC and HEVC |
67| 0.21.1 | fix: allow MPEG-2 ADTS |
78| 0.21.0 | feat: version number in apps and mp4 package |
Original file line number Diff line number Diff line change @@ -43,6 +43,12 @@ func (a NaluType) String() string {
4343 return "PPS_8"
4444 case NALU_AUD :
4545 return "AUD_9"
46+ case NALU_EO_SEQ :
47+ return "EndOfSequence_10"
48+ case NALU_EO_STREAM :
49+ return "EndOfStream_11"
50+ case NALU_FILL :
51+ return "FILL_12"
4652 default :
4753 return fmt .Sprintf ("Other_%d" , a )
4854 }
Original file line number Diff line number Diff line change 77)
88
99var (
10- commitVersion string = "v0.22 .0" // Updated when building using Makefile
10+ commitVersion string = "v0.23 .0" // Updated when building using Makefile
1111 commitDate string // commitDate in Epoch seconds (inserted from Makefile)
1212)
1313
You can’t perform that action at this time.
0 commit comments