summaryrefslogtreecommitdiff
path: root/camera/QCamera/stack/mm-camera-interface/src/mm_camera_helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'camera/QCamera/stack/mm-camera-interface/src/mm_camera_helper.c')
-rwxr-xr-xcamera/QCamera/stack/mm-camera-interface/src/mm_camera_helper.c55
1 files changed, 0 insertions, 55 deletions
diff --git a/camera/QCamera/stack/mm-camera-interface/src/mm_camera_helper.c b/camera/QCamera/stack/mm-camera-interface/src/mm_camera_helper.c
deleted file mode 100755
index 5962149..0000000
--- a/camera/QCamera/stack/mm-camera-interface/src/mm_camera_helper.c
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
-Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above
- copyright notice, this list of conditions and the following
- disclaimer in the documentation and/or other materials provided
- with the distribution.
- * Neither the name of The Linux Foundation nor the names of its
- contributors may be used to endorse or promote products derived
- from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
-WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
-BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
-OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
-IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-*/
-
-#include <fcntl.h>
-#include <stdio.h>
-#include <unistd.h>
-#include <stdlib.h>
-#include <ctype.h>
-#include <errno.h>
-#include <string.h>
-#include "mm_camera_dbg.h"
-
-/*============================================================
- FUNCTION mm_camera_dump_image
- DESCRIPTION:
-==============================================================*/
-int mm_camera_dump_image(void *addr, uint32_t size, char *filename)
-{
- int file_fd = open(filename, O_RDWR | O_CREAT, 0777);
-
- if (file_fd < 0) {
- CDBG_HIGH("%s: cannot open file\n", __func__);
- return -1;
- } else
- write(file_fd, addr, size);
- close(file_fd);
- CDBG("%s: %s, size=%d\n", __func__, filename, size);
- return 0;
-}