Fork me on GitHub
Loading...
Searching...
No Matches
pp-webm.h
Go to the documentation of this file.
1
12#ifndef JANUS_PP_WEBM
13#define JANUS_PP_WEBM
14
15#include <stdio.h>
16#include <jansson.h>
17
18#include "pp-rtp.h"
19
20/* WebM stuff */
21const char **janus_pp_webm_get_extensions(void);
22int janus_pp_webm_create(char *destination, char *metadata, gboolean vp8, const char *extension);
23int janus_pp_webm_preprocess(FILE *file, janus_pp_frame_packet *list, gboolean vp8, json_t *info);
24int janus_pp_webm_process(FILE *file, janus_pp_frame_packet *list, gboolean vp8, int *working);
25void janus_pp_webm_close(void);
26
27
28#endif
struct json_t json_t
Definition: plugin.h:236
Helper structures to handle RTP post-processing (headers)
const char ** janus_pp_webm_get_extensions(void)
Definition: pp-webm.c:45
void janus_pp_webm_close(void)
Definition: pp-webm.c:614
int janus_pp_webm_preprocess(FILE *file, janus_pp_frame_packet *list, gboolean vp8, json_t *info)
Definition: pp-webm.c:94
int janus_pp_webm_create(char *destination, char *metadata, gboolean vp8, const char *extension)
Definition: pp-webm.c:50
int janus_pp_webm_process(FILE *file, janus_pp_frame_packet *list, gboolean vp8, int *working)
Definition: pp-webm.c:325
Definition: pp-rtp.h:58