⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ndhd.c

📁 这个库实现了录象功能
💻 C
字号:
/******************************************************************************* ndhd.c libquicktime - A library for reading and writing quicktime/avi/mp4 files. http://libquicktime.sourceforge.net Copyright (C) 2002 Heroine Virtual Ltd. Copyright (C) 2002-2007 Members of the libquicktime project. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA*******************************************************************************/ #include "lqt_private.h"int quicktime_ndhd_init(quicktime_ndhd_t *ndhd){       ndhd->version = 2;       ndhd->revision = 0;       ndhd->nodeType[0] = 'o';       ndhd->nodeType[1] = 'b';       ndhd->nodeType[2] = 'j';       ndhd->nodeType[3] = 'e';       ndhd->nodeID = 1;       ndhd->nameAtomID = 0;       ndhd->commentAtomID = 0;       return 0;}int quicktime_ndhd_delete(quicktime_ndhd_t *ndhd){    return 0;}void quicktime_ndhd_dump(quicktime_ndhd_t *ndhd){       lqt_dump("node header (ndhd)\n");       lqt_dump(" version %i\n", ndhd->version );       lqt_dump(" revision %i\n", ndhd->revision );       lqt_dump(" node type %c%c%c%c\n", ndhd->nodeType[0],ndhd->nodeType[1],ndhd->nodeType[2],ndhd->nodeType[3] );       lqt_dump(" node id %ld\n", ndhd->nodeID );       lqt_dump(" name atom id %ld\n", ndhd->nameAtomID );       lqt_dump(" comment atom id %ld\n", ndhd->commentAtomID );}int quicktime_read_ndhd(quicktime_t *file, quicktime_ndhd_t *ndhd){       ndhd->version = quicktime_read_int16(file);       ndhd->revision = quicktime_read_int16(file);       quicktime_read_char32(file, ndhd->nodeType);       ndhd->nodeID = quicktime_read_int32(file);       ndhd->nameAtomID = quicktime_read_int32(file);       ndhd->commentAtomID = quicktime_read_int32(file);              return 0;}void quicktime_write_ndhd(quicktime_t *file, quicktime_ndhd_t *ndhd){    	quicktime_write_int16(file, ndhd->version);    	quicktime_write_int16(file, ndhd->revision);	quicktime_write_char32(file, ndhd->nodeType);	quicktime_write_int32(file, ndhd->nodeID);    	quicktime_write_int32(file, ndhd->nameAtomID);    	quicktime_write_int32(file, ndhd->commentAtomID);    	quicktime_write_int32(file, ndhd->reserved1);    	quicktime_write_int32(file, ndhd->reserved2);    		return;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -