1cabdff1aSopenharmony_ci/* 2cabdff1aSopenharmony_ci * GXF demuxer 3cabdff1aSopenharmony_ci * copyright (c) 2006 Reimar Doeffinger 4cabdff1aSopenharmony_ci * 5cabdff1aSopenharmony_ci * This file is part of FFmpeg. 6cabdff1aSopenharmony_ci * 7cabdff1aSopenharmony_ci * FFmpeg is free software; you can redistribute it and/or 8cabdff1aSopenharmony_ci * modify it under the terms of the GNU Lesser General Public 9cabdff1aSopenharmony_ci * License as published by the Free Software Foundation; either 10cabdff1aSopenharmony_ci * version 2.1 of the License, or (at your option) any later version. 11cabdff1aSopenharmony_ci * 12cabdff1aSopenharmony_ci * FFmpeg is distributed in the hope that it will be useful, 13cabdff1aSopenharmony_ci * but WITHOUT ANY WARRANTY; without even the implied warranty of 14cabdff1aSopenharmony_ci * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15cabdff1aSopenharmony_ci * Lesser General Public License for more details. 16cabdff1aSopenharmony_ci * 17cabdff1aSopenharmony_ci * You should have received a copy of the GNU Lesser General Public 18cabdff1aSopenharmony_ci * License along with FFmpeg; if not, write to the Free Software 19cabdff1aSopenharmony_ci * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 20cabdff1aSopenharmony_ci */ 21cabdff1aSopenharmony_ci 22cabdff1aSopenharmony_ci#ifndef AVFORMAT_GXF_H 23cabdff1aSopenharmony_ci#define AVFORMAT_GXF_H 24cabdff1aSopenharmony_ci 25cabdff1aSopenharmony_citypedef enum { 26cabdff1aSopenharmony_ci PKT_MAP = 0xbc, 27cabdff1aSopenharmony_ci PKT_MEDIA = 0xbf, 28cabdff1aSopenharmony_ci PKT_EOS = 0xfb, 29cabdff1aSopenharmony_ci PKT_FLT = 0xfc, 30cabdff1aSopenharmony_ci PKT_UMF = 0xfd, 31cabdff1aSopenharmony_ci} GXFPktType; 32cabdff1aSopenharmony_ci 33cabdff1aSopenharmony_citypedef enum { 34cabdff1aSopenharmony_ci MAT_NAME = 0x40, 35cabdff1aSopenharmony_ci MAT_FIRST_FIELD = 0x41, 36cabdff1aSopenharmony_ci MAT_LAST_FIELD = 0x42, 37cabdff1aSopenharmony_ci MAT_MARK_IN = 0x43, 38cabdff1aSopenharmony_ci MAT_MARK_OUT = 0x44, 39cabdff1aSopenharmony_ci MAT_SIZE = 0x45, 40cabdff1aSopenharmony_ci} GXFMatTag; 41cabdff1aSopenharmony_ci 42cabdff1aSopenharmony_citypedef enum { 43cabdff1aSopenharmony_ci TRACK_NAME = 0x4c, 44cabdff1aSopenharmony_ci TRACK_AUX = 0x4d, 45cabdff1aSopenharmony_ci TRACK_VER = 0x4e, 46cabdff1aSopenharmony_ci TRACK_MPG_AUX = 0x4f, 47cabdff1aSopenharmony_ci TRACK_FPS = 0x50, 48cabdff1aSopenharmony_ci TRACK_LINES = 0x51, 49cabdff1aSopenharmony_ci TRACK_FPF = 0x52, 50cabdff1aSopenharmony_ci} GXFTrackTag; 51cabdff1aSopenharmony_ci 52cabdff1aSopenharmony_ci#endif /* AVFORMAT_GXF_H */ 53