mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
317 B
10 lines
317 B
namespace ErsatzTV.FFmpeg.Format; |
|
|
|
public static class PixelFormat |
|
{ |
|
public const string YUV420P = "yuv420p"; |
|
public const string YUV420P10LE = "yuv420p10le"; |
|
public const string YUVJ420P = "yuvj420p"; |
|
public const string YUV444P = "yuv444p"; |
|
public const string YUV444P10LE = "yuv444p10le"; |
|
}
|
|
|