static mpf_termination_t* mpf_file_termination_create(
									mpf_termination_factory_t *termination_factory,
									void *obj, 
									apr_pool_t *pool)
{
	return mpf_termination_base_create(termination_factory,obj,&file_vtable,NULL,NULL,pool);
}
Example #2
0
/** Create raw MPF termination. */
MPF_DECLARE(mpf_termination_t*) mpf_raw_termination_create(
    void *obj,
    mpf_audio_stream_t *audio_stream,
    mpf_video_stream_t *video_stream,
    apr_pool_t *pool)
{
    return mpf_termination_base_create(NULL,obj,NULL,audio_stream,video_stream,pool);
}