Add new functions for extra preview stream format
[platform/core/multimedia/libmm-camcorder.git] / src / mm_camcorder.c
index eb74509..1ccd141 100644 (file)
@@ -481,3 +481,13 @@ int mm_camcorder_get_log_level(void)
 {
        return _mmcamcorder_get_log_level();
 }
+
+int mm_camcorder_set_extra_preview_stream_format(MMHandleType camcorder, int stream_id, int pixel_format, int width, int height, int fps)
+{
+       return _mmcamcorder_set_extra_preview_stream_format(camcorder, stream_id, pixel_format, width, height, fps);
+}
+
+int mm_camcorder_get_extra_preview_stream_format(MMHandleType camcorder, int stream_id, int *pixel_format, int *width, int *height, int *fps)
+{
+       return _mmcamcorder_get_extra_preview_stream_format(camcorder, stream_id, pixel_format, width, height, fps);
+}