~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to ffmpeg/libavformat/rtsp.h

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-25 15:47:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080225154712-qvr11ekcea4c9ry8
Tags: 1.1.6-0.1ubuntu1
* Merge from debian-multimedia (LP: #120003), Ubuntu Changes:
 - For ffmpeg-related build-deps, remove cvs from package names.
 - Standards-Version 3.7.3
 - Maintainer Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * RTSP definitions
3
3
 * Copyright (c) 2002 Fabrice Bellard.
4
4
 *
5
 
 * This library is free software; you can redistribute it and/or
 
5
 * This file is part of FFmpeg.
 
6
 *
 
7
 * FFmpeg is free software; you can redistribute it and/or
6
8
 * modify it under the terms of the GNU Lesser General Public
7
9
 * License as published by the Free Software Foundation; either
8
 
 * version 2 of the License, or (at your option) any later version.
 
10
 * version 2.1 of the License, or (at your option) any later version.
9
11
 *
10
 
 * This library is distributed in the hope that it will be useful,
 
12
 * FFmpeg is distributed in the hope that it will be useful,
11
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
15
 * Lesser General Public License for more details.
14
16
 *
15
17
 * You should have received a copy of the GNU Lesser General Public
16
 
 * License along with this library; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 * License along with FFmpeg; if not, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
20
 */
19
21
#ifndef RTSP_H
20
22
#define RTSP_H
35
37
#define RTSP_DEFAULT_PORT   554
36
38
#define RTSP_MAX_TRANSPORTS 8
37
39
#define RTSP_TCP_MAX_PACKET_SIZE 1472
 
40
#define RTSP_DEFAULT_NB_AUDIO_CHANNELS 2
 
41
#define RTSP_DEFAULT_AUDIO_SAMPLERATE 44100
 
42
#define RTSP_RTP_PORT_MIN 5000
 
43
#define RTSP_RTP_PORT_MAX 10000
38
44
 
39
45
typedef struct RTSPTransportField {
40
46
    int interleaved_min, interleaved_max;  /* interleave ids, if TCP transport */
50
56
    int content_length;
51
57
    enum RTSPStatusCode status_code; /* response code from server */
52
58
    int nb_transports;
 
59
    /* in AV_TIME_BASE unit, AV_NOPTS_VALUE if not used */
 
60
    int64_t range_start, range_end;
53
61
    RTSPTransportField transports[RTSP_MAX_TRANSPORTS];
54
62
    int seq; /* sequence number */
55
63
    char session_id[512];
68
76
    char transport_option[512];
69
77
} RTSPActionServerSetup;
70
78
 
71
 
typedef int FFRTSPCallback(enum RTSPCallbackAction action, 
 
79
typedef int FFRTSPCallback(enum RTSPCallbackAction action,
72
80
                           const char *session_id,
73
81
                           char *buf, int buf_size,
74
82
                           void *arg);
82
90
extern int rtsp_rtp_port_min;
83
91
extern int rtsp_rtp_port_max;
84
92
extern FFRTSPCallback *ff_rtsp_callback;
85
 
extern AVInputFormat rtsp_demux;
 
93
extern AVInputFormat rtsp_demuxer;
86
94
 
87
95
int rtsp_pause(AVFormatContext *s);
88
96
int rtsp_resume(AVFormatContext *s);