yading@11
|
1 /*
|
yading@11
|
2 * Windows Television (WTV)
|
yading@11
|
3 * Copyright (c) 2010-2011 Peter Ross <pross@xvid.org>
|
yading@11
|
4 *
|
yading@11
|
5 * This file is part of FFmpeg.
|
yading@11
|
6 *
|
yading@11
|
7 * FFmpeg is free software; you can redistribute it and/or
|
yading@11
|
8 * modify it under the terms of the GNU Lesser General Public
|
yading@11
|
9 * License as published by the Free Software Foundation; either
|
yading@11
|
10 * version 2.1 of the License, or (at your option) any later version.
|
yading@11
|
11 *
|
yading@11
|
12 * FFmpeg is distributed in the hope that it will be useful,
|
yading@11
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
yading@11
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
yading@11
|
15 * Lesser General Public License for more details.
|
yading@11
|
16 *
|
yading@11
|
17 * You should have received a copy of the GNU Lesser General Public
|
yading@11
|
18 * License along with FFmpeg; if not, write to the Free Software
|
yading@11
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
yading@11
|
20 */
|
yading@11
|
21
|
yading@11
|
22 #ifndef AVFORMAT_WTV_H
|
yading@11
|
23 #define AVFORMAT_WTV_H
|
yading@11
|
24
|
yading@11
|
25 #include "riff.h"
|
yading@11
|
26 #include "asf.h"
|
yading@11
|
27
|
yading@11
|
28 #define WTV_SECTOR_BITS 12
|
yading@11
|
29 #define WTV_SECTOR_SIZE (1 << WTV_SECTOR_BITS)
|
yading@11
|
30 #define WTV_BIGSECTOR_BITS 18
|
yading@11
|
31 #define WTV_PAD8(x) (((x) + 7) & ~7)
|
yading@11
|
32
|
yading@11
|
33 extern const uint8_t ff_timeline_le16[16];
|
yading@11
|
34 extern const uint8_t ff_timeline_table_0_entries_Events_le16[62];
|
yading@11
|
35 extern const uint8_t ff_table_0_entries_legacy_attrib_le16[58];
|
yading@11
|
36 extern const uint8_t ff_table_0_entries_time_le16[40];
|
yading@11
|
37
|
yading@11
|
38 extern const ff_asf_guid ff_dir_entry_guid;
|
yading@11
|
39 extern const ff_asf_guid ff_wtv_guid;
|
yading@11
|
40 extern const ff_asf_guid ff_timestamp_guid;
|
yading@11
|
41 extern const ff_asf_guid ff_data_guid;
|
yading@11
|
42 extern const ff_asf_guid ff_SBE2_STREAM_DESC_EVENT;
|
yading@11
|
43 extern const ff_asf_guid ff_stream1_guid;
|
yading@11
|
44 extern const ff_asf_guid ff_sync_guid;
|
yading@11
|
45 extern const ff_asf_guid ff_index_guid;
|
yading@11
|
46 extern const ff_asf_guid ff_mediatype_audio;
|
yading@11
|
47 extern const ff_asf_guid ff_mediatype_video;
|
yading@11
|
48 extern const ff_asf_guid ff_format_none;
|
yading@11
|
49 extern const AVCodecGuid ff_video_guids[];
|
yading@11
|
50
|
yading@11
|
51 extern const ff_asf_guid ff_DSATTRIB_TRANSPORT_PROPERTIES;
|
yading@11
|
52 extern const ff_asf_guid ff_metadata_guid;
|
yading@11
|
53 extern const ff_asf_guid ff_stream2_guid;
|
yading@11
|
54 extern const ff_asf_guid ff_mediasubtype_cpfilters_processed;
|
yading@11
|
55 extern const ff_asf_guid ff_format_cpfilters_processed;
|
yading@11
|
56 extern const ff_asf_guid ff_format_waveformatex;
|
yading@11
|
57 extern const ff_asf_guid ff_format_mpeg2_video;
|
yading@11
|
58 #endif /* AVFORMAT_WTV_H */
|