Comment input media type on beyond_input_image_config
authorJuyeon Lee <juyeonne.lee@samsung.com>
Thu, 21 Oct 2021 09:07:51 +0000 (18:07 +0900)
committerYoungjae Shin <yj99.shin@samsung.com>
Thu, 28 Oct 2021 10:48:56 +0000 (19:48 +0900)
[Problem]
format is restrict to with codec
convert_format is restrict to tensor_converter with peer_nn module
[Soultion]
clear comment module dependent tech. and add up-to-date format

Change-Id: I80af964b0bce6178ed61fc944f94bc8882040836
Signed-off-by: Juyeon Lee <juyeonne.lee@samsung.com>
subprojects/libbeyond/include/beyond/common.h

index 756c55400baed830e0612b394ef9aded7893ee17..49674042c9c33af6b21f233082b19bb536306f80 100644 (file)
@@ -143,12 +143,9 @@ enum beyond_input_type {
 };
 
 // format
-// // https://gstreamer.freedesktop.org/documentation/jpeg/jpegenc.html?gi-language=c#sink
-// { "I420", "YV12", "YUY2", "UYVY", "Y41B", "Y42B", "YVYU", "Y444", "NV21", "NV12", "RGB", "BGR", "RGBx", "xRGB", "BGRx", "xBGR", "GRAY8" };
+// { I420, YV12, YUY2, UYVY, Y41B, Y42B, YVYU, Y444, NV21, NV12, RGB, BGR, RGBx, xRGB, BGRx, xBGR, GRAY8 }
 // convert_format
-// https://gstreamer.freedesktop.org/documentation/jpeg/jpegdec.html?gi-language=c#src
-// https://github.com/nnstreamer/nnstreamer/blob/main/gst/nnstreamer/tensor_converter/converter-media-info-video.h
-// { "RGB", "BGR", "RGBx", "xRGB", "BGRx", "xBGR", "GRAY8" }
+// { RGB, BGR, RGBx, BGRx, xRGB, xBGR, RGBA, BGRA, ARGB, ABGR, GRAY8 }
 struct beyond_input_image_config {
     const char *format;
     int width;