diff options
author | Kevin | 2014-11-15 10:00:36 +0800 |
---|---|---|
committer | Kevin | 2014-11-15 10:00:36 +0800 |
commit | 9d40ac5867b9aefe0722bc1f110b965ff294d30d (patch) | |
tree | de942df665fac4bac0d9cb7ae86910fe937b0c1a /ANDROID_3.4.5/drivers/video/wmt/bootanimation/buffer.h | |
parent | 392e8802486cb573b916e746010e141a75f507e6 (diff) | |
download | FOSSEE-netbook-kernel-source-9d40ac5867b9aefe0722bc1f110b965ff294d30d.tar.gz FOSSEE-netbook-kernel-source-9d40ac5867b9aefe0722bc1f110b965ff294d30d.tar.bz2 FOSSEE-netbook-kernel-source-9d40ac5867b9aefe0722bc1f110b965ff294d30d.zip |
add via modify part source code for wm8880 4.4 kitkat
Diffstat (limited to 'ANDROID_3.4.5/drivers/video/wmt/bootanimation/buffer.h')
-rwxr-xr-x | ANDROID_3.4.5/drivers/video/wmt/bootanimation/buffer.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/ANDROID_3.4.5/drivers/video/wmt/bootanimation/buffer.h b/ANDROID_3.4.5/drivers/video/wmt/bootanimation/buffer.h new file mode 100755 index 00000000..3ac79aa5 --- /dev/null +++ b/ANDROID_3.4.5/drivers/video/wmt/bootanimation/buffer.h @@ -0,0 +1,34 @@ +#ifndef ANIMATION_BUFFER_H_INCLUDED +#define ANIMATION_BUFFER_H_INCLUDED + +#include "LzmaDec.h" +#include <linux/semaphore.h> + +typedef struct +{ + unsigned char *buffer; + unsigned char *w_pos; + unsigned char *r_pos; + int frame_count; + int frame_size; + struct semaphore sem_writable; + struct semaphore sem_readable; + int eof; +}animation_buffer; + + +int animation_buffer_init(animation_buffer * buf, int size, int count, ISzAlloc *alloc); + +int animation_buffer_stop(animation_buffer * buf); +int animation_buffer_release(animation_buffer * buf, ISzAlloc *alloc); + + +unsigned char * animation_buffer_get_writable(animation_buffer * buf, unsigned int * pSize); +void animation_buffer_write_finish(animation_buffer * buf, unsigned char * addr); + +unsigned char * animation_buffer_get_readable(animation_buffer * buf); +void animation_buffer_read_finish(animation_buffer * buf, unsigned char * addr); + + +#endif /* ANIMATION_BUFFER_H_INCLUDED */ + |