codec/mjpeg/jpeg.go: made JFIF header label local const

This commit is contained in:
Saxon 2019-12-29 22:50:20 +10:30
parent 029a59fc78
commit e8fd1a8661
1 changed files with 2 additions and 1 deletions

View File

@ -262,7 +262,8 @@ func writeHeader(p *putBuffer, _type, width, height, nbqTab, dri int, qtable []b
// Write JFIF header.
mark(p, codeAPP0)
p.put16(16)
p.putBuf([]byte("JFIF\000"))
const jfifLabel = "JFIF\000"
p.putBuf([]byte(jfifLabel))
p.put16(0x0201)
p.put8(0)
p.put16(1)