Added PixFmt() getter

This commit is contained in:
Alex Eidt 2022-04-22 13:33:16 -07:00
parent 2d72a27288
commit 9f884aeec1
3 changed files with 12 additions and 1 deletions

View file

@ -69,6 +69,10 @@ func (video *Video) AudioCodec() string {
return video.audioCodec
}
func (video *Video) PixFmt() string {
return video.pixfmt
}
func (video *Video) FrameBuffer() []byte {
return video.framebuffer
}