Merged in pcm-util (pull request #439)

helpers: added pcm as SID
This commit is contained in:
Trek Hopton 2020-12-21 10:33:53 +00:00
commit f45cab62f0
1 changed files with 4 additions and 1 deletions

View File

@ -31,6 +31,7 @@ const (
H264SID = 27 H264SID = 27
H265SID = 36 H265SID = 36
MJPEGSID = 28 MJPEGSID = 28
PCMSID = 191
ADPCMSID = 192 ADPCMSID = 192
) )
@ -43,9 +44,11 @@ func SIDToMIMEType(id int) (string, error) {
return "video/h265", nil return "video/h265", nil
case MJPEGSID: case MJPEGSID:
return "video/x-motion-jpeg", nil return "video/x-motion-jpeg", nil
case PCMSID:
return "audio/pcm", nil
case ADPCMSID: case ADPCMSID:
return "audio/adpcm", nil return "audio/adpcm", nil
default: default:
return "", errors.New("unkown stream ID") return "", errors.New("unknown stream ID")
} }
} }