summaryrefslogtreecommitdiffstats
path: root/video/filter/vf_dlopen.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/filter/vf_dlopen.h')
-rw-r--r--video/filter/vf_dlopen.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/video/filter/vf_dlopen.h b/video/filter/vf_dlopen.h
index 962605ca28..e225cd3457 100644
--- a/video/filter/vf_dlopen.h
+++ b/video/filter/vf_dlopen.h
@@ -23,11 +23,12 @@
} while (0)
#endif
-// valid pixel format names:
-// "yv12": planar YUV, U and V planes have an xshift and yshift of 1
+// some common valid pixel format names:
+// "gray": 8 bit grayscale
+// "yuv420p": planar YUV, U and V planes have an xshift and yshift of 1
// "rgb24": packed RGB24
struct vf_dlopen_formatpair {
- const char *from; // (LATER) can also be a name of a format class
+ const char *from;
const char *to; // if NULL, this means identical format as source
};