Fix stale links

This commit is contained in:
Ryan Boring
2023-06-02 14:06:26 -04:00
committed by Clyde Bazile
parent 9987e01d3f
commit 36f908c6e2

View File

@@ -7,25 +7,26 @@ import (
type Format string type Format string
const ( const (
// FormatI420 https://www.fourcc.org/pixel-format/yuv-i420/ // FormatI420 https://wiki.videolan.org/YUV#I420
FormatI420 Format = "I420" FormatI420 Format = "I420"
// FormatI444 is a YUV format without sub-sampling // FormatI444 is a YUV format without sub-sampling
FormatI444 Format = "I444" FormatI444 Format = "I444"
// FormatNV21 https://www.fourcc.org/pixel-format/yuv-nv21/ // FormatNV21 https://www.kernel.org/doc/html/v5.9/userspace-api/media/v4l/pixfmt-nv12.html
FormatNV21 = "NV21" FormatNV21 = "NV21"
// FormatNV12 https://www.fourcc.org/pixel-format/yuv-nv12/ // FormatNV12 https://www.kernel.org/doc/html/v5.9/userspace-api/media/v4l/pixfmt-nv12.html
FormatNV12 = "NV12" FormatNV12 = "NV12"
// FormatYUY2 https://www.fourcc.org/pixel-format/yuv-yuy2/ // FormatYUY2 https://www.kernel.org/doc/html/v5.9/userspace-api/media/v4l/pixfmt-yuyv.html
// YUY2 is what Windows calls YUYV
FormatYUY2 = "YUY2" FormatYUY2 = "YUY2"
// FormatYUYV https://www.fourcc.org/pixel-format/yuv-yuy2/ // FormatYUYV https://www.kernel.org/doc/html/v5.9/userspace-api/media/v4l/pixfmt-yuyv.html
FormatYUYV = "YUYV" FormatYUYV = "YUYV"
// FormatUYVY https://www.fourcc.org/pixel-format/yuv-uyvy/ // FormatUYVY https://www.kernel.org/doc/html/v5.9/userspace-api/media/v4l/pixfmt-uyvy.html
FormatUYVY = "UYVY" FormatUYVY = "UYVY"
// FormatRGBA https://www.fourcc.org/pixel-format/rgb-rgba/ // FormatRGBA https://www.kernel.org/doc/html/v5.9/userspace-api/media/v4l/pixfmt-rgb.html
FormatRGBA Format = "RGBA" FormatRGBA Format = "RGBA"
// FormatMJPEG https://www.fourcc.org/mjpg/ // FormatMJPEG https://wiki.videolan.org/MJPEG
FormatMJPEG = "MJPEG" FormatMJPEG = "MJPEG"
// FormatZ16 https://www.kernel.org/doc/html/v5.9/userspace-api/media/v4l/pixfmt-z16.html // FormatZ16 https://www.kernel.org/doc/html/v5.9/userspace-api/media/v4l/pixfmt-z16.html