codec/mjpeg/extract.go: corrected comment for Extractor.dst field

This commit is contained in:
Saxon 2019-11-23 15:33:41 +10:30
parent 398543ac8e
commit e1e890d49e
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ const maxRTPSize = 1500 // Max ethernet transmission unit in bytes.
// Extractor is an Extractor for extracting JPEG from an RTP stream.
type Extractor struct {
dst io.Writer // The destination we'll be writing extracted NALUs to.
dst io.Writer // The destination we'll be writing extracted JPEGs to.
}
// NewExtractor returns a new Extractor.