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

« back to all changes in this revision

Viewing changes to ffmpeg/libavformat/mpegts.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
 * MPEG2 transport stream defines
3
3
 * Copyright (c) 2003 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
 
20
22
#define TS_FEC_PACKET_SIZE 204
 
23
#define TS_DVHS_PACKET_SIZE 192
21
24
#define TS_PACKET_SIZE 188
22
25
#define NB_PID_MAX 8192
23
26
#define MAX_SECTION_SIZE 4096
28
31
 
29
32
/* table ids */
30
33
#define PAT_TID   0x00
31
 
#define PMT_TID   0x02 
 
34
#define PMT_TID   0x02
32
35
#define SDT_TID   0x42
33
36
 
 
37
/* descriptor ids */
 
38
#define DVB_SUBT_DESCID             0x59
 
39
 
34
40
#define STREAM_TYPE_VIDEO_MPEG1     0x01
35
41
#define STREAM_TYPE_VIDEO_MPEG2     0x02
36
42
#define STREAM_TYPE_AUDIO_MPEG1     0x03
37
43
#define STREAM_TYPE_AUDIO_MPEG2     0x04
38
44
#define STREAM_TYPE_PRIVATE_SECTION 0x05
39
45
#define STREAM_TYPE_PRIVATE_DATA    0x06
 
46
#define STREAM_TYPE_AUDIO_AAC       0x0f
 
47
#define STREAM_TYPE_VIDEO_MPEG4     0x10
 
48
#define STREAM_TYPE_VIDEO_H264      0x1b
 
49
#define STREAM_TYPE_VIDEO_VC1       0xea
40
50
 
41
51
#define STREAM_TYPE_AUDIO_AC3       0x81
42
 
 
43
 
unsigned int mpegts_crc32(const uint8_t *data, int len);
44
 
extern AVOutputFormat mpegts_mux;
 
52
#define STREAM_TYPE_AUDIO_DTS       0x8a
 
53
 
 
54
#define STREAM_TYPE_SUBTITLE_DVB    0x100
 
55
 
 
56
extern AVOutputFormat mpegts_muxer;
 
57
 
 
58
typedef struct MpegTSContext MpegTSContext;
 
59
 
 
60
MpegTSContext *mpegts_parse_open(AVFormatContext *s);
 
61
int mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
 
62
                        const uint8_t *buf, int len);
 
63
void mpegts_parse_close(MpegTSContext *ts);