/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
internal/ffmpeg/encode/pixel_format.go
16 строк
354 B
Michael Mayer
FFmpeg: Add tests, refactor package, and split into sub-packages #4604
08 янв 2025, 20:27
08 янв 2025, 20:27
bbb30e6
Код
Авторство
О чём код?
package encode // PixelFormat represents a standard pixel format. type PixelFormat string // String returns the pixel format as string. func (f PixelFormat) String() string { return string(f) } // Standard pixel formats. const ( FormatYUV420P PixelFormat = "yuv420p" FormatNV12 PixelFormat = "nv12,hwupload" FormatQSV PixelFormat = "qsv" )