blob: cca0f66bee3cac0cd64acba839f6dfeade5ef209 [file] [log] [blame]
/*
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.
*/
#ifndef MM_JPEG_ENCODER_H
#define MM_JPEG_ENCODER_H
#include <linux/msm_ion.h>
#include "jpege.h"
#include "exif.h"
#include "camera_defs_i.h"
extern void mm_jpege_event_handler(void*, jpeg_event_t event, void *p_arg);
extern void mm_jpege_output_produced_handler(void*, void *, jpeg_buffer_t);
extern int mm_jpege_output_produced_handler2(void*, void *, jpeg_buffer_t, uint8_t);
int8_t mm_jpeg_encoder_init(void);
extern int8_t mm_jpeg_encoder_encode(const cam_ctrl_dimension_t * dimension,
const uint8_t * thumbnail_buf,
int thumbnail_fd, uint32_t thumbnail_offset,
const uint8_t * snapshot_buf,
int snapshot_fd,
uint32_t snapshot_offset,
common_crop_t *crop,
exif_tags_info_t *exif_data,
int exif_numEntries,
const int32_t a_cbcroffset,
cam_point_t* main_crop_offset,
cam_point_t* thumb_crop_offset);
extern int8_t mm_jpeg_encoder_setMainImageQuality(uint32_t quality);
extern int8_t mm_jpeg_encoder_setThumbnailQuality(uint32_t quality);
extern int8_t mm_jpeg_encoder_setRotation(int rotation);
extern void mm_jpeg_encoder_join(void);
extern int8_t mm_jpeg_encoder_get_buffer_offset(uint32_t width, uint32_t height, uint32_t* p_y_offset,
uint32_t* p_cbcr_offset, uint32_t* p_buf_size, uint8_t *num_planes, uint32_t planes[]);
extern void mm_jpeg_encoder_set_3D_info(cam_3d_frame_format_t format);
typedef void (*jpegfragment_callback_t)(uint8_t * buff_ptr,
uint32_t buff_size,
void* user_data);
typedef void (*jpeg_callback_t)(jpeg_event_t, void *);
extern void set_callbacks(
jpegfragment_callback_t fragcallback,
jpeg_callback_t eventcallback,
void* userdata
);
extern void mm_jpeg_encoder_cancel();
#endif //MMCAMERA_JPEG_ENCODER_H