Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /*
  2.  * Copyright (c) 2009 Daniel Verkamp
  3.  *
  4.  * This file is part of FFmpeg.
  5.  *
  6.  * FFmpeg is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * FFmpeg is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with FFmpeg; if not, write to the Free Software
  18.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19.  */
  20.  
  21. #include "w64.h"
  22.  
  23. const uint8_t ff_w64_guid_riff[16] = {
  24.     'r', 'i', 'f', 'f',
  25.     0x2E, 0x91, 0xCF, 0x11, 0xA5, 0xD6, 0x28, 0xDB, 0x04, 0xC1, 0x00, 0x00
  26. };
  27.  
  28. const uint8_t ff_w64_guid_wave[16] = {
  29.     'w', 'a', 'v', 'e',
  30.     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A
  31. };
  32.  
  33. const uint8_t ff_w64_guid_fmt [16] = {
  34.     'f', 'm', 't', ' ',
  35.     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A
  36. };
  37.  
  38. const uint8_t ff_w64_guid_fact[16] = { 'f', 'a', 'c', 't',
  39.     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A
  40. };
  41.  
  42. const uint8_t ff_w64_guid_data[16] = {
  43.     'd', 'a', 't', 'a',
  44.     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A
  45. };
  46.  
  47. const uint8_t ff_w64_guid_summarylist[16] = {
  48.     0xBC, 0x94, 0x5F, 0x92,
  49.     0x5A, 0x52, 0xD2, 0x11, 0x86, 0xDC, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A
  50. };
  51.