Support new format: MEDIA_FORMAT_BGR888 26/323826/1 accepted/tizen_8.0_unified tizen_8.0 accepted/tizen/8.0/unified/20250512.161025
authorJeongmo Yang <jm80.yang@samsung.com>
Wed, 7 May 2025 02:25:09 +0000 (11:25 +0900)
committerJeongmo Yang <jm80.yang@samsung.com>
Wed, 7 May 2025 05:20:45 +0000 (14:20 +0900)
[Version] 0.6.45
[Issue Type] Update

Change-Id: I6e524167f088f4c1a00728ea5129af4f03410402
Signed-off-by: Jeongmo Yang <jm80.yang@samsung.com>
packaging/capi-media-codec.spec
src/media_codec_ini.c

index bed5b52e5637a786316d691016805eb4ff5c4e37..b96cb5814177144b2ac9e2f7e942bcfe486dad01 100644 (file)
@@ -4,7 +4,7 @@
 
 Name:       capi-media-codec
 Summary:    A Media Codec library in Tizen Native API
-Version:    0.6.44
+Version:    0.6.45
 Release:    0
 Group:      Multimedia/API
 License:    Apache-2.0
index 595d7adea718b275d786aad125cf277833ed1841..6c6599850a24c326f2f203e0bfbf09e22f8971a2 100644 (file)
@@ -249,6 +249,9 @@ media_format_mimetype_e _mc_convert_media_format_str_to_int(char *sformat)
        } else if (!strcmp(sformat, "RGB888")) {
                iformat = MEDIA_FORMAT_RGB888;
                goto endf;
+       } else if (!strcmp(sformat, "BGR888")) {
+               iformat = MEDIA_FORMAT_BGR888;
+               goto endf;
        } else if (!strcmp(sformat, "RGBA")) {
                iformat = MEDIA_FORMAT_RGBA;
                goto endf;