ref: 2e1bb011e07d4d67eda9d5a8dd00c0e1682e4b00
dir: /src/picture.h/
#ifndef __PICTURE_H #define __PICTURE_H #include <opus.h> #include "opusenc.h" typedef enum{ PIC_FORMAT_JPEG, PIC_FORMAT_PNG, PIC_FORMAT_GIF }picture_format; #define BASE64_LENGTH(len) (((len)+2)/3*4) /*Utility function for base64 encoding METADATA_BLOCK_PICTURE tags. Stores BASE64_LENGTH(len)+1 bytes in dst (including a terminating NUL).*/ void base64_encode(char *dst, const char *src, int len); int oi_strncasecmp(const char *a, const char *b, int n); int is_jpeg(const unsigned char *buf, size_t length); int is_png(const unsigned char *buf, size_t length); int is_gif(const unsigned char *buf, size_t length); void extract_png_params(const unsigned char *data, size_t data_length, opus_uint32 *width, opus_uint32 *height, opus_uint32 *depth, opus_uint32 *colors, int *has_palette); void extract_gif_params(const unsigned char *data, size_t data_length, opus_uint32 *width, opus_uint32 *height, opus_uint32 *depth, opus_uint32 *colors, int *has_palette); void extract_jpeg_params(const unsigned char *data, size_t data_length, opus_uint32 *width, opus_uint32 *height, opus_uint32 *depth, opus_uint32 *colors, int *has_palette); char *parse_picture_specification(const char *filename, int picture_type, const char *description, int *error, int *seen_file_icons); #define WRITE_U32_BE(buf, val) \ do{ \ (buf)[0]=(unsigned char)((val)>>24); \ (buf)[1]=(unsigned char)((val)>>16); \ (buf)[2]=(unsigned char)((val)>>8); \ (buf)[3]=(unsigned char)(val); \ } \ while(0); #endif /* __PICTURE_H */