diff options
author | zhentan feng <spyfeng@gmail.com> | 2011-08-23 21:40:58 +0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-08 01:55:07 +0200 |
commit | 42d4df06e178768aee61cf21db1d3969a2fa4c03 (patch) | |
tree | c40801e525415f6632c1ffd28a80afd67e34dccd /libavformat/wtv.h | |
parent | bcc531f04a0590732d42da133c11c138e8d08b59 (diff) | |
download | ffmpeg-42d4df06e178768aee61cf21db1d3969a2fa4c03.tar.gz |
WTV muxer (1_extract_wtv_common_code.patch)
Diffstat (limited to 'libavformat/wtv.h')
-rw-r--r-- | libavformat/wtv.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libavformat/wtv.h b/libavformat/wtv.h index 252804d602..7e4f243551 100644 --- a/libavformat/wtv.h +++ b/libavformat/wtv.h @@ -28,6 +28,12 @@ #define WTV_SECTOR_BITS 12 #define WTV_SECTOR_SIZE (1 << WTV_SECTOR_BITS) #define WTV_BIGSECTOR_BITS 18 +#define WTV_PAD8(x) (((x) + 7) & ~7) + +extern const uint8_t ff_timeline_le16[16]; +extern const uint8_t ff_timeline_table_0_entries_Events_le16[62]; +extern const uint8_t ff_table_0_entries_legacy_attrib_le16[58]; +extern const uint8_t ff_table_0_entries_time_le16[40]; extern const ff_asf_guid ff_dir_entry_guid; extern const ff_asf_guid ff_wtv_guid; @@ -38,4 +44,12 @@ extern const ff_asf_guid ff_mediatype_audio; extern const ff_asf_guid ff_mediatype_video; extern const ff_asf_guid ff_format_none; extern const AVCodecGuid ff_video_guids[]; + +extern const ff_asf_guid ff_DSATTRIB_TRANSPORT_PROPERTIES; +extern const ff_asf_guid ff_metadata_guid; +extern const ff_asf_guid ff_stream2_guid; +extern const ff_asf_guid ff_mediasubtype_cpfilters_processed; +extern const ff_asf_guid ff_format_cpfilters_processed; +extern const ff_asf_guid ff_format_waveformatex; +extern const ff_asf_guid ff_format_mpeg2_video; #endif /* AVFORMAT_WTV_H */ |