Fork me on GitHub
pp-h264.h
Go to the documentation of this file.
1 
12 #ifndef JANUS_PP_H264
13 #define JANUS_PP_H264
14 
15 #include <stdio.h>
16 
17 #include "pp-rtp.h"
18 
19 /* H.264 stuff */
20 int janus_pp_h264_create(char *destination, char *metadata, gboolean faststart);
21 int janus_pp_h264_preprocess(FILE *file, janus_pp_frame_packet *list);
22 int janus_pp_h264_process(FILE *file, janus_pp_frame_packet *list, int *working);
23 void janus_pp_h264_close(void);
24 
25 
26 #endif
void janus_pp_h264_close(void)
Definition: pp-h264.c:518
int janus_pp_h264_preprocess(FILE *file, janus_pp_frame_packet *list)
Definition: pp-h264.c:251
int janus_pp_h264_create(char *destination, char *metadata, gboolean faststart)
Definition: pp-h264.c:61
Helper structures to handle RTP post-processing (headers)
int janus_pp_h264_process(FILE *file, janus_pp_frame_packet *list, int *working)
Definition: pp-h264.c:357
Definition: pp-rtp.h:55