This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | ast_imager |
structure associated with registering an image format More... | |
Functions | |
int | ast_supports_images (struct ast_channel *chan) |
Check for image support on a channel. | |
int | ast_send_image (struct ast_channel *chan, char *filename) |
Sends an image. | |
ast_frame * | ast_read_image (char *filename, char *preflang, int format) |
Make an image. | |
int | ast_image_register (struct ast_imager *imgdrv) |
Register image format. | |
void | ast_image_unregister (struct ast_imager *imgdrv) |
Unregister an image format. | |
int | ast_image_init (void) |
Initialize image stuff. |
|
Initialize image stuff. Initializes all the various image stuff. Basically just registers the cli stuff Returns 0 all the time Definition at line 201 of file image.c. References ast_cli_register(), and show_images. Referenced by main().
|
|
Register image format.
Definition at line 38 of file image.c. References ast_mutex_lock, ast_mutex_unlock, ast_verbose(), ast_imager::desc, ast_imager::name, ast_imager::next, option_verbose, and VERBOSE_PREFIX_2.
|
|
Unregister an image format.
Definition at line 49 of file image.c. References ast_mutex_lock, ast_mutex_unlock, ast_verbose(), ast_imager::desc, ast_imager::name, ast_imager::next, option_verbose, and VERBOSE_PREFIX_2.
|
|
Make an image.
Definition at line 104 of file image.c. References ast_log(), ast_mutex_lock, ast_mutex_unlock, and LOG_WARNING. Referenced by ast_send_image().
|
|
Sends an image.
Definition at line 161 of file image.c. References ast_frfree(), ast_read_image(), ast_channel::language, ast_channel::pvt, and ast_channel_pvt::send_image.
|
|
Check for image support on a channel.
Definition at line 70 of file image.c. References ast_channel::pvt, and ast_channel_pvt::send_image.
|