github.com/bluenviron/mediacommon@v1.9.3/pkg/formats/fmp4/codec_mjpeg.go (about)

     1  package fmp4
     2  
     3  // CodecMJPEG is the M-JPEG codec.
     4  type CodecMJPEG struct {
     5  	Width  int
     6  	Height int
     7  }
     8  
     9  // IsVideo implements Codec.
    10  func (CodecMJPEG) IsVideo() bool {
    11  	return true
    12  }
    13  
    14  func (*CodecMJPEG) isCodec() {}