Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'decoder/LAVVideo/decoders/pixfmt.cpp')
-rw-r--r--decoder/LAVVideo/decoders/pixfmt.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/decoder/LAVVideo/decoders/pixfmt.cpp b/decoder/LAVVideo/decoders/pixfmt.cpp
index caf0100f..cfd4e1d7 100644
--- a/decoder/LAVVideo/decoders/pixfmt.cpp
+++ b/decoder/LAVVideo/decoders/pixfmt.cpp
@@ -29,6 +29,7 @@ static LAVPixFmtDesc lav_pixfmt_desc[] = {
{ 2, 3, { 1, 1, 1 }, { 1, 1, 1 } }, ///< LAVPixFmt_YUV444bX
{ 1, 2, { 1, 1 }, { 1, 2 } }, ///< LAVPixFmt_NV12
{ 2, 1, { 1 }, { 1 } }, ///< LAVPixFmt_YUY2
+ { 2, 2, { 1, 1 }, { 1, 2 } }, ///< LAVPixFmt_P010
{ 3, 1, { 1 }, { 1 } }, ///< LAVPixFmt_RGB24
{ 4, 1, { 1 }, { 1 } }, ///< LAVPixFmt_RGB32
{ 4, 1, { 1 }, { 1 } }, ///< LAVPixFmt_ARGB32
@@ -49,6 +50,7 @@ static struct {
{ LAVPixFmt_YUV444, AV_PIX_FMT_YUV444P },
{ LAVPixFmt_NV12, AV_PIX_FMT_NV12 },
{ LAVPixFmt_YUY2, AV_PIX_FMT_YUYV422 },
+ { LAVPixFmt_P010, AV_PIX_FMT_P010 },
{ LAVPixFmt_RGB24, AV_PIX_FMT_BGR24 },
{ LAVPixFmt_RGB32, AV_PIX_FMT_BGRA },
{ LAVPixFmt_ARGB32, AV_PIX_FMT_BGRA },