Tizen Native API
5.5
|
The Media Format APIs provides functions for specify video or audio information.
#include <media_format.h>
Functions | |
int | media_format_create (media_format_h *fmt) |
Creates a media format. | |
int | media_format_get_type (media_format_h fmt, media_format_type_e *formattype) |
Gets format type of media format. | |
int | media_format_get_container_mime (media_format_h fmt, media_format_mimetype_e *mimetype) |
Gets container MIME type of media format. | |
int | media_format_get_text_info (media_format_h fmt, media_format_mimetype_e *mimetype, media_format_text_type_e *type) |
Gets text track information of media format. | |
int | media_format_get_video_info (media_format_h fmt, media_format_mimetype_e *mimetype, int *width, int *height, int *avg_bps, int *max_bps) |
Gets video information of media format. | |
int | media_format_get_audio_info (media_format_h fmt, media_format_mimetype_e *mimetype, int *channel, int *samplerate, int *bit, int *avg_bps) |
Gets audio information of media format. | |
int | media_format_get_audio_aac_type (media_format_h fmt, bool *is_adts) |
Gets audio aac type of media format. | |
int | media_format_get_audio_aac_header_type (media_format_h fmt, media_format_aac_header_type_e *aac_header_type) |
Gets audio aac header type of media format. | |
int | media_format_get_video_frame_rate (media_format_h fmt, int *frame_rate) |
Gets video frame rate of media format. | |
int | media_format_set_container_mime (media_format_h fmt, media_format_mimetype_e mimetype) |
Sets container MIME type of media format. | |
int | media_format_set_text_mime (media_format_h fmt, media_format_mimetype_e mimetype) |
Sets text MIME type of media format. | |
int | media_format_set_text_type (media_format_h fmt, media_format_text_type_e type) |
Sets text type of media format. | |
int | media_format_set_video_mime (media_format_h fmt, media_format_mimetype_e mimetype) |
Sets video MIME type of media format. | |
int | media_format_set_video_width (media_format_h fmt, int width) |
Sets video width of media format. | |
int | media_format_set_video_height (media_format_h fmt, int height) |
Sets video height of media format. | |
int | media_format_set_video_avg_bps (media_format_h fmt, int avg_bps) |
Sets video avg_bps of media format. | |
int | media_format_set_video_max_bps (media_format_h fmt, int max_bps) |
Sets video max_bps of media format. | |
int | media_format_set_video_frame_rate (media_format_h fmt, int frame_rate) |
Sets video frame rate of media format. | |
int | media_format_set_audio_mime (media_format_h fmt, media_format_mimetype_e mimetype) |
Sets audio MIME type of media format. | |
int | media_format_set_audio_channel (media_format_h fmt, int channel) |
Sets audio channel of media format. | |
int | media_format_set_audio_samplerate (media_format_h fmt, int samplerate) |
Sets audio samplerate of media format. | |
int | media_format_set_audio_bit (media_format_h fmt, int bit) |
Sets audio bit of media format. | |
int | media_format_set_audio_avg_bps (media_format_h fmt, int avg_bps) |
Sets audio avg_bps of media format. | |
int | media_format_set_audio_aac_type (media_format_h fmt, bool is_adts) |
Sets audio aac type of media format. | |
int | media_format_set_audio_aac_header_type (media_format_h fmt, media_format_aac_header_type_e aac_header_type) |
Sets audio aac header type of media format. | |
int | media_format_ref (media_format_h fmt) |
Increases reference count of media_format_h object. | |
int | media_format_unref (media_format_h fmt) |
Decreases reference count of media_format_h object. | |
int | media_format_is_writable (media_format_h fmt, bool *is_writable) |
Checks whether the media_format_h is writable or not. | |
int | media_format_make_writable (media_format_h fmt, media_format_h *out_fmt) |
Returns a writable copy of media_format_h. | |
int | media_format_set_extra (media_format_h fmt, void *extra_data) |
Sets extra data of media format. | |
int | media_format_get_extra (media_format_h fmt, void **extra_data) |
Gets extra data of media format. | |
int | media_format_set_audio_channel_mask (media_format_h fmt, uint64_t channel_mask) |
Sets audio channel mask of media format. | |
int | media_format_get_audio_channel_mask (media_format_h fmt, uint64_t *channel_mask) |
Gets audio channel mask of media format. | |
int | media_format_is_little_endian (media_format_h fmt, bool *is_little_endian) |
Checks whether the given media format is little endian. | |
int | media_format_get_audio_bit_depth (media_format_h fmt, int *bit_depth) |
Gets the number of bits of information in digital audio using pulse-code modulation (PCM). | |
int | media_format_channel_positions_from_mask (media_format_h fmt, uint64_t channel_mask, media_format_channel_position_e **positions) |
Converts the channels in the channel_mask to a positions array. | |
int | media_format_channel_positions_to_mask (media_format_h fmt, const media_format_channel_position_e *positions, uint64_t *channel_mask_out) |
Converts the positions array to a bitmask. | |
Typedefs | |
typedef struct media_format_s * | media_format_h |
Media Format handle type. |
typedef struct media_format_s* media_format_h |
Media Format handle type.
Enumeration for media format aac header type.
Enumeration for audio channel positions.
enum media_format_error_e |
Enumerations of media format error.
Enumeration for media format MIME type.
Enumeration for media format text type.
enum media_format_type_e |
Enumeration for media format type.
int media_format_channel_positions_from_mask | ( | media_format_h | fmt, |
uint64_t | channel_mask, | ||
media_format_channel_position_e ** | positions | ||
) |
Converts the channels in the channel_mask to a positions array.
The size of the position array is equal to the number of channels, that can be obtained with media_format_get_audio_info().
[in] | fmt | The media format handle |
[in] | channel_mask | The input channel_mask |
[out] | positions | The channel positions array, its length is equal to the number of channels |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int channels; uint64_t channel_mask; media_format_channel_position_e *positions; media_format_get_audio_info(fmt, NULL, &channels, NULL, NULL, NULL); positions = malloc(channels * sizeof(media_format_channel_position_e)); media_format_channel_positions_from_mask(fmt, channel_mask, &positions); ... free(positions);
int media_format_channel_positions_to_mask | ( | media_format_h | fmt, |
const media_format_channel_position_e * | positions, | ||
uint64_t * | channel_mask_out | ||
) |
Converts the positions array to a bitmask.
[in] | fmt | The media format handle |
[in] | positions | The channel positions array, its lengh is equal to the number of channels |
[out] | channel_mask_out | the output channel mask |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_create | ( | media_format_h * | fmt | ) |
Creates a media format.
It creates media format. and reference count will be set to 1 For destroying media_format_h handle, use media_format_unref().
[out] | fmt | allocated media_format_h |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_OUT_OF_MEMORY | Out of memory |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_get_audio_aac_header_type | ( | media_format_h | fmt, |
media_format_aac_header_type_e * | aac_header_type | ||
) |
Gets audio aac header type of media format.
[in] | fmt | The media_format_h to get audio information |
[out] | aac_header_type | The media_format_aac_header_type_e, ex) MEDIA_FORMAT_AAC_HEADER_ADTS |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_get_audio_aac_type | ( | media_format_h | fmt, |
bool * | is_adts | ||
) |
Gets audio aac type of media format.
[in] | fmt | media_format_h to get audio information |
[out] | is_adts | AAC ADTS flag of the audio |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_get_audio_bit_depth | ( | media_format_h | fmt, |
int * | bit_depth | ||
) |
Gets the number of bits of information in digital audio using pulse-code modulation (PCM).
[in] | fmt | The media format handle |
[out] | bit_depth | The number of bits of information in each sample |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_get_audio_channel_mask | ( | media_format_h | fmt, |
uint64_t * | channel_mask | ||
) |
Gets audio channel mask of media format.
[in] | fmt | The media format handle |
[out] | channel_mask | The output channel mask |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_PACKET_ERROR_INVALID_OPERATION | Invalid operation |
int channels; uint64_t channel_mask; media_format_channel_position_e *positions; media_format_get_audio_info(fmt, NULL, &channels, NULL, NULL, NULL); positions = malloc(channels * sizeof(media_format_channel_position_e)); media_format_get_audio_channel_mask(fmt, &channel_mask); media_format_channel_positions_from_mask(fmt, channel_mask, &positions); ... free(positions);
int media_format_get_audio_info | ( | media_format_h | fmt, |
media_format_mimetype_e * | mimetype, | ||
int * | channel, | ||
int * | samplerate, | ||
int * | bit, | ||
int * | avg_bps | ||
) |
Gets audio information of media format.
returns mimetype, channels, height, samplerate bps, max bps of this media format.
[in] | fmt | media_format_h to get audio information |
[out] | mimetype | media_format_mimetype_e , ex) MEDIA_FORMAT_PCM |
[out] | channel | channel of the audio |
[out] | samplerate | sampling rate of the audio |
[out] | bit | bit resolution of the audio |
[out] | avg_bps | average bps of the audio |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_get_container_mime | ( | media_format_h | fmt, |
media_format_mimetype_e * | mimetype | ||
) |
Gets container MIME type of media format.
[in] | fmt | The media_format_h to get container mime type |
[out] | mimetype | The media_format_mimetype_e, ex) MEDIA_FORMAT_CONTAINER_MP4 |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_get_extra | ( | media_format_h | fmt, |
void ** | extra_data | ||
) |
Gets extra data of media format.
The user can get extra data which user sets value via media_format_set_extra().
[in] | fmt | The media format handle |
[out] | extra_data | The extra data to get |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
int media_format_get_text_info | ( | media_format_h | fmt, |
media_format_mimetype_e * | mimetype, | ||
media_format_text_type_e * | type | ||
) |
Gets text track information of media format.
[in] | fmt | The media_format_h to get text information |
[out] | mimetype | The media_format_mimetype_e, ex) MEDIA_FORMAT_TEXT_MP4 |
[out] | type | The media_format_text_type_e |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_get_type | ( | media_format_h | fmt, |
media_format_type_e * | formattype | ||
) |
Gets format type of media format.
[in] | fmt | The media_format_h to get format type |
[out] | formattype | The media_format_type_e, ex) MEDIA_FORMAT_AUDIO |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_get_video_frame_rate | ( | media_format_h | fmt, |
int * | frame_rate | ||
) |
Gets video frame rate of media format.
[in] | fmt | The media_format_h to get |
[out] | frame_rate | The video frame rate |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_get_video_info | ( | media_format_h | fmt, |
media_format_mimetype_e * | mimetype, | ||
int * | width, | ||
int * | height, | ||
int * | avg_bps, | ||
int * | max_bps | ||
) |
Gets video information of media format.
returns mimetype, width, height, average bps, max bps of this media format.
[in] | fmt | media_format_h to get video information |
[out] | mimetype | media_format_mimetype_e , ex) MEDIA_FORMAT_H264_HP |
[out] | width | width of the video |
[out] | height | height of the video |
[out] | avg_bps | average bps of the video |
[out] | max_bps | max bps of the video |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_is_little_endian | ( | media_format_h | fmt, |
bool * | is_little_endian | ||
) |
Checks whether the given media format is little endian.
[in] | fmt | The media format handle |
[out] | is_little_endian | true if the given media format is little endian, false if the given media format is big endian |
0
on success, otherwise a negative error value MEDIA_PACKET_ERROR_NONE | Successful |
MEDIA_PACKET_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_PACKET_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_is_writable | ( | media_format_h | fmt, |
bool * | is_writable | ||
) |
Checks whether the media_format_h is writable or not.
[in] | fmt | exist media_format_h |
[out] | is_writable | if ref_count is 1, return true. if not, return false |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_OUT_OF_MEMORY | Out of memory |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_make_writable | ( | media_format_h | fmt, |
media_format_h * | out_fmt | ||
) |
Returns a writable copy of media_format_h.
If there is only one reference count on fmt, the caller must be the owner, and so this function will return the object unchanged. while, if there is more than one reference count on the object, a new object will be returned. The caller will own a reference to the returned object. In a nutshell, this function unrefs the fmt and refs the out_fmt returned. Don't access fmt after calling this function.
[in] | fmt | exist media_format_h , don't access it after calling this function |
[out] | out_fmt | new copied media_format_h, the caller is owner of this object |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_OUT_OF_MEMORY | Out of memory |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_ref | ( | media_format_h | fmt | ) |
Increases reference count of media_format_h object.
increase ref_count of media_format_h
[in] | fmt | exist media_format_h |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_OUT_OF_MEMORY | Out of memory |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_audio_aac_header_type | ( | media_format_h | fmt, |
media_format_aac_header_type_e | aac_header_type | ||
) |
Sets audio aac header type of media format.
[in] | fmt | The media_format_h to get audio information |
[in] | aac_header_type | The media_format_aac_header_type_e, ex) MEDIA_FORMAT_AAC_HEADER_ADTS |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_audio_aac_type | ( | media_format_h | fmt, |
bool | is_adts | ||
) |
Sets audio aac type of media format.
Sets audio aac data type of this media format
[in] | fmt | media_format_h to set |
[in] | is_adts | aac adts flag of the audio |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_audio_avg_bps | ( | media_format_h | fmt, |
int | avg_bps | ||
) |
Sets audio avg_bps of media format.
[in] | fmt | media_format_h to set |
[in] | avg_bps | average bit per second of the audio |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_audio_bit | ( | media_format_h | fmt, |
int | bit | ||
) |
Sets audio bit of media format.
Sets audio bit resolution of this media format
[in] | fmt | media_format_h to set |
[in] | bit | bit of the audio |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_audio_channel | ( | media_format_h | fmt, |
int | channel | ||
) |
Sets audio channel of media format.
[in] | fmt | media_format_h to set audio information |
[in] | channel | channel of the audio |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_audio_channel_mask | ( | media_format_h | fmt, |
uint64_t | channel_mask | ||
) |
Sets audio channel mask of media format.
[in] | fmt | The media format handle |
[in] | channel_mask | The input channel mask |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_PACKET_ERROR_INVALID_OPERATION | Invalid operation |
uint64_t channel_mask; media_format_channel_position_e position[2]; position[0] = MEDIA_FORMAT_CHANNEL_POSITION_FRONT_LEFT; position[1] = MEDIA_FORMAT_CHANNEL_POSITION_FRONT_RIGHT; media_format_channel_positions_to_mask(fmt, position, &channel_mask); media_format_set_audio_channel_mask(fmt, channel_mask);
int media_format_set_audio_mime | ( | media_format_h | fmt, |
media_format_mimetype_e | mimetype | ||
) |
Sets audio MIME type of media format.
[in] | fmt | media_format_h to set audio information |
[in] | mimetype | media_format_mimetype_e , ex) MEDIA_FORMAT_PCM |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_audio_samplerate | ( | media_format_h | fmt, |
int | samplerate | ||
) |
Sets audio samplerate of media format.
[in] | fmt | media_format_h to set |
[in] | samplerate | sampling rate of the audio |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_container_mime | ( | media_format_h | fmt, |
media_format_mimetype_e | mimetype | ||
) |
Sets container MIME type of media format.
[in] | fmt | The media_format_h to set |
[in] | mimetype | The media_format_mimetype_e, ex) MEDIA_FORMAT_CONTAINER_MP4 |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_extra | ( | media_format_h | fmt, |
void * | extra_data | ||
) |
Sets extra data of media format.
The user can set data that media format does not support.
[in] | fmt | The media format handle |
[in] | extra_data | The extra data to set |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
int media_format_set_text_mime | ( | media_format_h | fmt, |
media_format_mimetype_e | mimetype | ||
) |
Sets text MIME type of media format.
[in] | fmt | The media_format_h to set |
[in] | mimetype | The media_format_mimetype_e, ex) MEDIA_FORMAT_TEXT |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_text_type | ( | media_format_h | fmt, |
media_format_text_type_e | type | ||
) |
Sets text type of media format.
[in] | fmt | The media_format_h to set |
[in] | type | The text type |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_video_avg_bps | ( | media_format_h | fmt, |
int | avg_bps | ||
) |
Sets video avg_bps of media format.
[in] | fmt | media_format_h to set |
[in] | avg_bps | average bps of the video |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_video_frame_rate | ( | media_format_h | fmt, |
int | frame_rate | ||
) |
Sets video frame rate of media format.
[in] | fmt | The media_format_h to set |
[in] | frame_rate | The video frame rate |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_video_height | ( | media_format_h | fmt, |
int | height | ||
) |
Sets video height of media format.
[in] | fmt | media_format_h to set |
[in] | height | height of the video |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_video_max_bps | ( | media_format_h | fmt, |
int | max_bps | ||
) |
Sets video max_bps of media format.
[in] | fmt | media_format_h to set |
[in] | max_bps | max bps of the video |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_video_mime | ( | media_format_h | fmt, |
media_format_mimetype_e | mimetype | ||
) |
Sets video MIME type of media format.
[in] | fmt | media_format_h to set |
[in] | mimetype | media_format_mimetype_e , ex) MEDIA_FORMAT_H264_HP |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_set_video_width | ( | media_format_h | fmt, |
int | width | ||
) |
Sets video width of media format.
[in] | fmt | media_format_h to set |
[in] | width | width of the video |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |
int media_format_unref | ( | media_format_h | fmt | ) |
Decreases reference count of media_format_h object.
[in] | fmt | exist media_format_h |
0
on success, otherwise a negative error value MEDIA_FORMAT_ERROR_NONE | Successful |
MEDIA_FORMAT_ERROR_INVALID_PARAMETER | Invalid parameter |
MEDIA_FORMAT_ERROR_OUT_OF_MEMORY | Out of memory |
MEDIA_FORMAT_ERROR_INVALID_OPERATION | Invalid operation |