comparison rtsp.h @ 2048:5b54f43626d0 libavformat

remove unused rtsp_callback
author alex
date Thu, 26 Apr 2007 17:38:30 +0000
parents 342cce8cb3e4
children a6d6b2b19341
comparison
equal deleted inserted replaced
2047:2e0e98c0b622 2048:5b54f43626d0
74 typedef int FFRTSPCallback(enum RTSPCallbackAction action, 74 typedef int FFRTSPCallback(enum RTSPCallbackAction action,
75 const char *session_id, 75 const char *session_id,
76 char *buf, int buf_size, 76 char *buf, int buf_size,
77 void *arg); 77 void *arg);
78 78
79 /** useful for modules: set RTSP callback function */
80 void rtsp_set_callback(FFRTSPCallback *rtsp_cb);
81
82 int rtsp_init(void); 79 int rtsp_init(void);
83 void rtsp_parse_line(RTSPHeader *reply, const char *buf); 80 void rtsp_parse_line(RTSPHeader *reply, const char *buf);
84 81
85 extern int rtsp_default_protocols; 82 extern int rtsp_default_protocols;
86 extern int rtsp_rtp_port_min; 83 extern int rtsp_rtp_port_min;
87 extern int rtsp_rtp_port_max; 84 extern int rtsp_rtp_port_max;
88 extern FFRTSPCallback *ff_rtsp_callback;
89 extern AVInputFormat rtsp_demuxer; 85 extern AVInputFormat rtsp_demuxer;
90 86
91 int rtsp_pause(AVFormatContext *s); 87 int rtsp_pause(AVFormatContext *s);
92 int rtsp_resume(AVFormatContext *s); 88 int rtsp_resume(AVFormatContext *s);
93 89