• Main Page
  • Related Pages
  • Modules
  • Data Structures
  • Files
  • Examples
  • File List
  • Globals

libavformat/wtv.c

Go to the documentation of this file.
00001 /*
00002  * Windows Television (WTV)
00003  * Copyright (c) 2010-2011 Peter Ross <pross@xvid.org>
00004  *
00005  * This file is part of FFmpeg.
00006  *
00007  * FFmpeg is free software; you can redistribute it and/or
00008  * modify it under the terms of the GNU Lesser General Public
00009  * License as published by the Free Software Foundation; either
00010  * version 2.1 of the License, or (at your option) any later version.
00011  *
00012  * FFmpeg is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00015  * Lesser General Public License for more details.
00016  *
00017  * You should have received a copy of the GNU Lesser General Public
00018  * License along with FFmpeg; if not, write to the Free Software
00019  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
00020  */
00021 
00022 #include "wtv.h"
00023 
00024 /* WTV GUIDs*/
00025 const ff_asf_guid ff_dir_entry_guid =
00026     {0x92,0xB7,0x74,0x91,0x59,0x70,0x70,0x44,0x88,0xDF,0x06,0x3B,0x82,0xCC,0x21,0x3D};
00027 const ff_asf_guid ff_wtv_guid =
00028     {0xB7,0xD8,0x00,0x20,0x37,0x49,0xDA,0x11,0xA6,0x4E,0x00,0x07,0xE9,0x5E,0xAD,0x8D};
00029 const ff_asf_guid ff_timestamp_guid =
00030     {0x5B,0x05,0xE6,0x1B,0x97,0xA9,0x49,0x43,0x88,0x17,0x1A,0x65,0x5A,0x29,0x8A,0x97};
00031 const ff_asf_guid ff_data_guid =
00032     {0x95,0xC3,0xD2,0xC2,0x7E,0x9A,0xDA,0x11,0x8B,0xF7,0x00,0x07,0xE9,0x5E,0xAD,0x8D};
00033 const ff_asf_guid ff_stream_guid =
00034     {0xED,0xA4,0x13,0x23,0x2D,0xBF,0x4F,0x45,0xAD,0x8A,0xD9,0x5B,0xA7,0xF9,0x1F,0xEE};
00035 const ff_asf_guid ff_mediatype_audio =
00036     {'a','u','d','s',FF_MEDIASUBTYPE_BASE_GUID};
00037 const ff_asf_guid ff_mediatype_video =
00038     {'v','i','d','s',FF_MEDIASUBTYPE_BASE_GUID};
00039 const ff_asf_guid ff_format_none =
00040     {0xD6,0x17,0x64,0x0F,0x18,0xC3,0xD0,0x11,0xA4,0x3F,0x00,0xA0,0xC9,0x22,0x31,0x96};
00041 
00042 const AVCodecGuid ff_video_guids[] = {
00043     {CODEC_ID_MPEG2VIDEO, {0x26,0x80,0x6D,0xE0,0x46,0xDB,0xCF,0x11,0xB4,0xD1,0x00,0x80,0x5F,0x6C,0xBB,0xEA}},
00044     {CODEC_ID_NONE}
00045 };

Generated on Wed Apr 11 2012 07:31:37 for FFmpeg by  doxygen 1.7.1