WARNING: The online documentation has moved to https://docs.pjsip.org.

Visit the new documentation at https://docs.pjsip.org:

BLOG | DOCUMENTATION | GITHUB

Home --> Documentations --> PJMEDIA Reference

Audio playback from WAV file. More...

Data Structures

struct  pjmedia_wav_player_info
 

Enumerations

enum  pjmedia_file_player_option { PJMEDIA_FILE_NO_LOOP = 1 }
 

Functions

pj_status_t pjmedia_wav_player_port_create (pj_pool_t *pool, const char *filename, unsigned ptime, unsigned flags, pj_ssize_t buff_size, pjmedia_port **p_port)
 
pj_status_t pjmedia_wav_player_get_info (pjmedia_port *port, pjmedia_wav_player_info *i)
 
pj_ssize_t pjmedia_wav_player_get_len (pjmedia_port *port)
 
pj_status_t pjmedia_wav_player_port_set_pos (pjmedia_port *port, pj_uint32_t offset)
 
pj_ssize_t pjmedia_wav_player_port_get_pos (pjmedia_port *port)
 
pj_status_t pjmedia_wav_player_set_eof_cb (pjmedia_port *port, void *user_data, pj_status_t(*cb)(pjmedia_port *port, void *usr_data))
 
pj_status_t pjmedia_wav_player_set_eof_cb2 (pjmedia_port *port, void *user_data, void(*cb)(pjmedia_port *port, void *usr_data))
 

Detailed Description

Enumeration Type Documentation

◆ pjmedia_file_player_option

WAV file player options.

Enumerator
PJMEDIA_FILE_NO_LOOP 

Tell the file player to return NULL frame when the whole file has been played.

Function Documentation

◆ pjmedia_wav_player_port_create()

pj_status_t pjmedia_wav_player_port_create ( pj_pool_t pool,
const char *  filename,
unsigned  ptime,
unsigned  flags,
pj_ssize_t  buff_size,
pjmedia_port **  p_port 
)

Create a media port to play streams from a WAV file. WAV player port supports for reading WAV file with uncompressed 16 bit PCM format or compressed G.711 A-law/U-law format.

Parameters
poolPool to create memory buffers for this port.
filenameFile name to open.
ptimeThe duration (in miliseconds) of each frame read from this port. If the value is zero, the default duration (20ms) will be used.
flagsPort creation flags.
buff_sizeBuffer size to be allocated. If the value is zero or negative, the port will use default buffer size (which is about 4KB).
p_portPointer to receive the file port instance.
Returns
PJ_SUCCESS on success.

◆ pjmedia_wav_player_get_info()

pj_status_t pjmedia_wav_player_get_info ( pjmedia_port port,
pjmedia_wav_player_info i 
)

Get additional info about the file player.

Parameters
portThe file port.
iThe info.
Returns
PJ_SUCCESS on success or the appropriate error code.

◆ pjmedia_wav_player_get_len()

pj_ssize_t pjmedia_wav_player_get_len ( pjmedia_port port)

Get the data length, in bytes.

Parameters
portThe file player port.
Returns
The length of the data, in bytes. On error, the error code is given as negative value.

◆ pjmedia_wav_player_port_set_pos()

pj_status_t pjmedia_wav_player_port_set_pos ( pjmedia_port port,
pj_uint32_t  offset 
)

Set the file play position of WAV player.

Parameters
portThe file player port.
offsetPlayback position in bytes, relative to the start of the payload.
Returns
PJ_SUCCESS on success.

◆ pjmedia_wav_player_port_get_pos()

pj_ssize_t pjmedia_wav_player_port_get_pos ( pjmedia_port port)

Get the file play position of WAV player, in bytes.

Parameters
portThe file player port.
Returns
The current play position, in bytes. On error, the error code is given as negative value.

◆ pjmedia_wav_player_set_eof_cb()

pj_status_t pjmedia_wav_player_set_eof_cb ( pjmedia_port port,
void *  user_data,
pj_status_t(*)(pjmedia_port *port, void *usr_data)  cb 
)

Register a callback to be called when the file reading has reached the end of file. If the file is set to play repeatedly, then the callback will be called multiple times. Note that only one callback can be registered for each file port.

Parameters
portThe file player port.
user_dataUser data to be specified in the callback
cbCallback to be called. If the callback returns non- PJ_SUCCESS, the playback will stop. Note that if application destroys the file port in the callback, it must return non-PJ_SUCCESS here.
Returns
PJ_SUCCESS on success.

◆ pjmedia_wav_player_set_eof_cb2()

pj_status_t pjmedia_wav_player_set_eof_cb2 ( pjmedia_port port,
void *  user_data,
void(*)(pjmedia_port *port, void *usr_data)  cb 
)

Register a callback to be called when the file reading has reached the end of file. If the file is set to play repeatedly, then the callback will be called multiple times. Note that only one callback can be registered for each file port.

Parameters
portThe file player port.
user_dataUser data to be specified in the callback
cbCallback to be called. Note that if application wishes to stop the playback, it can disconnect the port in the callback, and only after all connections have been removed could the application safely destroy the port.
Returns
PJ_SUCCESS on success.

 


PJMEDIA small footprint Open Source media stack
Copyright (C) 2006-2008 Teluu Inc.