Welcome![Sign In][Sign Up]
Location:
Search - doc h.2

Search list

[CommunicationH323

Description: 有关H323的相关技术参考资料 1、H0323协议书E.DOC 2、H.323与SIP的比较.pdf 3、基于H.323的MCU技术.doc 4、基于MPEG与H 323doc.doc
Platform: | Size: 399945 | Author: danis | Hits:

[Other resourcemp3play

Description: 非常适合内嵌式mp3播放,例如控制台!注意看压缩包里readme.doc 详细过程,在ARM及MIPS下通过 新建一个 wce application,选择 a simple windows ce application 在 1.tool->options->directories>include files里包含必要的头文件 D:\\WINCE500\\pubilc\\directx\\SDK\\INC D:\\WINCE500\\pubilc\\common\\SDK\\INC D:\\WINCE500\\pubilc\\common\\OAK\\INC D:\\WINCE500\\pubilc\\common\\DDK\\INC 2. >Library files D:\\WINCE500\\PUBLIC\\DIRECTX\\SDK\\LIB\\MIPSII\\RETAIL D:\\WINCE500\\PUBLIC\\COMMON\\SDK\\LIB\\MIPSII\\RETAIL D:\\WINCE500\\PUBLIC\\COMMON\\OAK\\LIB\\MIPSII\\RETAIL 3.可能要在Project->Settings->link的object/library modules 加入 commctrl.lib coredll.lib ole32.lib oleaut32.lib uuid.lib strmiids.lib newres.h play.cpp play.vcw resource.h StdAfx.cpp StdAfx.h 下面为播放源码 #include \"stdafx.h\" #include<dshow.h> #include<streams.h> .......其实编译时的 object/library modules 只要看 sourse 文件包含哪个dll,或lib 就行
Platform: | Size: 1569391 | Author: lzy | Hits:

[DocumentsWebBrowser的8个方法和13个属性

Description: WebBrowser的8个方法和13个属性,以及它们的功能: 方法 说明  GoBack 相当于IE的“后退”按钮,使你在当前历史列表中后退一项  GoForward 相当于IE的“前进”按钮,使你在当前历史列表中前进一项  GoHome 相当于IE的“主页”按钮,连接用户默认的主页  GoSearch 相当于IE的“搜索”按钮,连接用户默认的搜索页面  Navigate 连接到指定的URL  Refresh 刷新当前页面  Refresh2 同上,只是可以指定刷新级别,所指定的刷新级别的值来自RefreshConstants枚举表, 该表定义在ExDisp.h中,可以指定的不同值如下: REFRESH_NORMAL 执行简单的刷新,不将HTTP pragma: no-cache头发送给服务器 REFRESH_IFEXPIRED 只有在网页过期后才进行简单的刷新 REFRESH_CONTINUE 仅作内部使用。在MSDN里写着DO NOT USE! 请勿使用 REFRESH_COMPLETELY 将包含pragma: no-cache头的请求发送到服务器  Stop 相当于IE的“停止”按钮,停止当前页面及其内容的载入 属性 说明  Application 如果该对象有效,则返回掌管WebBrowser控件的应用程序实现的自动化对象(IDispatch)。如果在宿主对象中自动化对象无效,这个程序将返回WebBrowser 控件的自动化对象  Parent 返回WebBrowser控件的父自动化对象,通常是一个容器,例如是宿主或IE窗口  Container 返回WebBrowser控件容器的自动化对象。通常该值与Parent属性返回的值相同  Document 为活动的文档返回自动化对象。如果HTML当前正被显示在WebBrowser中,则 Document属性提供对DHTML Object Model的访问途径  TopLevelContainer 返回一个Boolean值,表明IE是否是WebBrowser控件顶层容器,是就返回true  Type 返回已被WebBrowser控件加载的对象的类型。例如:如果加载.doc文件,就会返 回Microsoft Word Document  Left 返回或设置WebBrowser控件窗口的内部左边与容器窗口左边的距离  Top 返回或设置WebBrowser控件窗口的内部左边与容器窗口顶边的距离  Width 返回或设置WebBrowser窗口的宽度,以像素为单位  Height 返回或设置WebBrowser窗口的高度,以像素为单位  LocationName 返回一个字符串,该字符串包含着WebBrowser当前显示的资源的名称,如果资源 是网页就是网页的标题;如果是文件或文件夹,就是文件或文件夹的名称  LocationURL 返回WebBrowser当前正在显示的资源的URL  Busy 返回一个Boolean值,说明WebBrowser当前是否正在加载URL,如果返回true 就可以使用stop方法来撤销正在执行的访问操作 如何利用 WebBrowser 控件,显示 .GIF 动画? 要有一定的网页知识(HTML、JavaScript、CSS) 注意细节: 没有"滚动条"和"鼠标右键弹出的 IE 上下文菜单",".HTM 源文件" ... 我写了一个,效果还真不错! ''Objects: Form1、Command1、CommonDialog1、WebBrowser1 Option Explicit Private Sub Command1_Click() CommonDialog1.ShowOpen If VBA.Len(VBA.Trim(CommonDialog1.FileN欢迎光临学网,点击这里查看更多文章教程 [1] [2] [3] [4] [5] [6] [7] [8] ame)) > 0 Then Dim p As stdole.StdPicture Dim sPath As String sPath = VBA.Trim(VBA.Trim(CommonDialog1.FileName)) Set p = VB.LoadPicture(sPath) WebBrowser1.Width = p.Width * 16 / 26 WebBrowser1.Height = p.Height * 16 / 26 '' WebBrowser1.Navigate "about:blank" WebBrowser1.Document.open WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "WebBrowser1.Document.writeln " WebBrowser1.Document.writeln "WebBrowser1.Document.writeln " " WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" End If End Sub Private Sub Form_Load() Command1.Caption = "&Open" WebBrowser1.Navigate "about:blank" WebBrowser1.Document.open WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.Close End Sub
Platform: | Size: 3992 | Author: weidonglingsir@163.com | Hits:

[SourceCodejpeg编解码

Description: jpeg软件编解码 ccjpeg.c jpeg_enc_interface.h Makefile ansi2knr.1 config.sub jcdctmgr.c jconfig.doc jcphuff.c jddctmgr.c jdtrans.c jmemansi.c jpegtran makeapps.ds makefile.unix rdgif.c wrbmp.c ansi2knr.c configure jchuff.c jconfig.h jcprepct.c jdhuff.c jerror.c jmemdosa.asm jpegtran.1 Makefile makefile.vc rdjpgcom wrgif.c cderror.h djpeg jchuff.h jconfig.mac jcsample.c jdhuff.h jerror.h jmemdos.c jpegtran.c makefile.ansi makefile.vms rdjpgcom.1 wrjpgcom cdjpeg.c djpeg.1 jcinit.c jconfig.manx jctrans.c jdinput.c jfdctflt.c jmemmac.c jquant1.c Makefile.bak makefile.wat rdjpgcom.c wrjpgcom.1 cdjpeg.h djpeg.c jcmainct.c jconfig.mc6 jdapimin.c jdmainct.c jfdctfst.c jmemmgr.c jquant2.c makefile.bcc makelib.ds rdppm.c wrjpgcom.c change.log example.c jcmarker.c jconfig.sas jdapistd.c jdmarker.c jfdctint.c jmemname.c jutils.c makefile.cfg makeproj.mac rdrle.c wrppm.c cjpeg install-sh jcmaster.c jconfig.st jdatadst.c jdmaster.c jidctflt.c jmemnobs.c jversion.h makefile.dj makljpeg.st rdswitch.c wrrle.c cjpeg.1 jcapimin.c jcomapi.c jconfig.vc jdatasrc.c jdmerge.c jidctfst.c jmemsys.h ltconfig makefile.manx maktjpeg.st rdtarga.c wrtarga.c cjpeg.c jcapistd.c jconfig.bcc jconfig.vms jdcoefct.c jdphuff.c jidctint.c jmorecfg.h ltmain.sh makefile.mc6 makvms.opt README ckconfig.c jccoefct.c jconfig.cfg jconfig.wat jdcolor.c jdpostct.c jidctred.c jpegint.h makcjpeg.st makefile.mms rdbmp.c transupp.c config.guess jccolor.c jconfig.dj jcparam.c jdct.h jdsample.c jinclude.h jpeglib.h makdjpeg.st makefile.sas rdcolmap.c transupp.h
Platform: | Size: 628241 | Author: hejp@18bc.com | Hits:

[DocumentsH.261

Description:
Platform: | Size: 200704 | Author: 王博 | Hits:

[Chess Poker gameschessevluation

Description: 该模块能完成输入棋局的棋局异常或走棋违规判断.使用方法:把引擎头文件和智 能对弈程序IntelligentChess.h一起拷到所建文件目录下,通过“工程”菜单把引擎头文件和智能对弈程序IntelligentChess.h一起加入工程, 用#include "IntelligentChess.h"语句把智能对弈程序IntelligentChess.h加入该工程.cpp文件。然后调用各功能函数完成异常、违规判断该项目系在Visual Studio.net 2003下所建的Win32控制台项目(使用其它版本的编译器只需新建一个Win32控制台项目,然后逐一加入所有的. cpp文件和.h文件即可),其目的只是建立智能对弈棋局违规,异常判断程序模块,并不具备别的功能。-The module can be imported complete game of the game of chess, or go abnormal irregularities judgment. Use : The first engines documents and procedures IntelligentChess.h smart players together Kaodao built document head recorded, through the "works" engines menu headers and intelligent players a procedure IntelligentChess.h join the project, use# include "IntelligentChess.h" statement of intelligent players procedure In telligentChess.h to join the project. cpp document. Then call the function of abnormal function completed, judging irregularities in the Department of the project was officially built in 2003 under the control of Win32 Taiwan project (using other versions of the compiler only one new Win32 console project to be followed by all. cpp files and the. h doc
Platform: | Size: 858112 | Author: dzy | Hits:

[Communicationsrtp-1[1].0.6

Description: This package provides an implementation of the Secure Real-time Transport Protocol (SRTP), the Universal Security Transform (UST), and a crypto engine to support it that includes AES-128 counter mode, TMMHv2, and replay protection. The definitions of these mechanisms are documented in the Internet Drafts in the doc/ subdirectory. The SRTP API is documented in include/srtp.h, and the library is in libsrtp.a (after compilation).
Platform: | Size: 860160 | Author: | Hits:

[Program docH323

Description: 有关H323的相关技术参考资料 1、H0323协议书E.DOC 2、H.323与SIP的比较.pdf 3、基于H.323的MCU技术.doc 4、基于MPEG与H 323doc.doc-H323 on the relevant technical reference 1, H0323 agreement E.DOC2, H.323 and SIP comparison. Pdf3, the MCU-based H.323 technology. Doc4, based on the MPEG and H 323doc.doc
Platform: | Size: 399360 | Author: danis | Hits:

[Windows CEmp3play

Description: 非常适合内嵌式mp3播放,例如控制台!注意看压缩包里readme.doc 详细过程,在ARM及MIPS下通过 新建一个 wce application,选择 a simple windows ce application 在 1.tool->options->directories>include files里包含必要的头文件 D:\WINCE500\pubilc\directx\SDK\INC D:\WINCE500\pubilc\common\SDK\INC D:\WINCE500\pubilc\common\OAK\INC D:\WINCE500\pubilc\common\DDK\INC 2. >Library files D:\WINCE500\PUBLIC\DIRECTX\SDK\LIB\MIPSII\RETAIL D:\WINCE500\PUBLIC\COMMON\SDK\LIB\MIPSII\RETAIL D:\WINCE500\PUBLIC\COMMON\OAK\LIB\MIPSII\RETAIL 3.可能要在Project->Settings->link的object/library modules 加入 commctrl.lib coredll.lib ole32.lib oleaut32.lib uuid.lib strmiids.lib newres.h play.cpp play.vcw resource.h StdAfx.cpp StdAfx.h 下面为播放源码 #include "stdafx.h" #include<dshow.h> #include<streams.h> .......其实编译时的 object/library modules 只要看 sourse 文件包含哪个dll,或lib 就行 -Very suitable for embedded mp3 player, such as the console! Attention Readme.doc bag to see the detailed process of compression, in the ARM and MIPS adopted a new wce application, choose a simple windows ce application in 1.tool-
Platform: | Size: 1568768 | Author: lzy | Hits:

[Other Embeded programIR_Learn

Description: This IR (Infra-Red) learn module for home automation system. It can learn IR codes from different IR remotes, and then execute any assigned actions controlled by learned IR remote. This project was developed using Keil 8051 compiler. Processor - Atmel AT89C51 Frequency - 22.1184 Mhz (described as OSC_FREQ in "timer.h") Timer 0 - system timer (used for timeouts and delays) Also, look in folder /doc for additional information about IR codes formats and codes from different manufacturers. -This is IR (Infra-Red) learn module for home automation system. It can learn IR codes from different IR remotes, and then execute any assigned actions controlled by learned IR remote. This project was developed using Keil 8051 compiler. Processor- Atmel AT89C51 Frequency- 22.1184 Mhz (described as OSC_FREQ in "timer.h") Timer 0- system timer (used for timeouts and delays) Also, look in folder /doc for additional information about IR codes formats and codes from different manufacturers.
Platform: | Size: 528384 | Author: Gulf | Hits:

[Linux-UnixCAN-MCP2510

Description: linux下的can程序,包括驱动和上层应用程序,其中有doc文档对程序进行详细说明-can under linux procedures, including the driver and the upper applications, including doc document detailed description of the procedures
Platform: | Size: 73728 | Author: ls | Hits:

[VOIP programGlobalIPSound

Description: Subject to Doc-Voip-2013 这是瑞典Global IP Sound公司的GIPS语音编解码引擎开发包(无实现代码,只提供库文件与.h文件)。该公司是全球顶尖的语音处理公司,Skype、Logitech、WebEx、TI、QQ的产品中都使用了该公司的语音开发包。 本下载包中包含GIPS的2部分产品:  VoiceEngine 能在最恶劣的网络下为VOIP提供最小延迟、最佳语音质量的软件开发包;  ConferenceEngine 为VOIP服务器软件(会议混音、会议中声音处理)提供支持的开发包;  开发包中还包括:AEC(自动回音消除)、AGC、VAD、DTMF、以及编码转换等各种处理接-Subject to Doc-Voip-2013 This is a Swedish company Global IP Sound GIPS voice codec engine development kit (no implementation code, only library files. H files). The company is the world' s leading voice processing company, Skype, Logitech, WebEx, TI, QQ' s products are used in the development of the company' s voice packets. The download package contains 2 parts of GIPS products:  VoiceEngine in the worst under the VOIP network to provide the minimum delay, the best voice quality of the software development kit  ConferenceEngine for the VOIP server software (conference mixing, sound processing session ) to provide support for the development package  development kit also includes: AEC (Auto Echo Cancellation), AGC, VAD, DTMF, and then encoding conversion and other processing
Platform: | Size: 526336 | Author: x | Hits:

[Windows Developviki

Description: SDK Demo ........\ ....\AudioCodecSDK.dll ........\....\ChannelCfg.dat ........\....\ClientCfg.dat ........\....\CVT_StdToHik.dll ........\....\DEC_G711.dll ........\....\DEC_G722.dll ........\....\DEC_G729.dll ........\....\DEC_H264.dll ........\....\DEC_HikMpeg4.dll ........\....\Dec_MpAud.dll ........\....\DEC_StdMpeg4.dll ........\....\DsSdk.dll ........\....\DsSdk.lib ........\....\HCNetSDK.dll ........\....\HCNetSDK.h ........\....\HCNetSDK.lib ........\....\invoke.info ........\....\newclient.exe ........\....\PlayCtrl.dll ........\....\PlayCtrl.lib ........\....\RtspNetSdk.dll ........\demo使用说明.pdf ........\Doc - SDK Demo ........\Demo ........\....\AudioCodecSDK.dll ........\....\ChannelCfg.dat ........\....\ClientCfg.dat ........\....\CVT_StdToHik.dll ........\....\DEC_G711.dll ........\....\DEC_G722.dll ........\....\DEC_G729.dll ........\....\DEC_H264.dll ........\....\DEC_HikMpeg4.dll ........\....\Dec_MpAud.dll ........\....\DEC_StdMpeg4.dll ........\....\DsSdk.dll ........\....\DsSdk.lib ........\....\HCNetSDK.dll ........\....\HCNetSDK.h ........\....\HCNetSDK.lib ........\....\invoke.info ........\....\newclient.exe ........\....\PlayCtrl.dll ........\....\PlayCtrl.lib ........\....\RtspNetSdk.dll ........\demo使用说明.pdf ........\Doc
Platform: | Size: 5199872 | Author: xjw | Hits:

[SCMDOSC

Description: DOS-C version 1.0 Beta 2 for PC/XT/AT/AT386/AT486 免费的 DOS 操作系统及完全的源代码,可用于工业控制,嵌入系统等,不需要支付额外的费用。兼容 MS-DOS Directory Structure ------------------- dos-c root directory +-----dist holds image of distribution disk +-----doc documentation directory +-----hdr common *.h files +-----lib LIBM.LIB and DEVICE.LIB +-----src source directories for: +--------+-----boot boot.bin +--------+-----command COMMAND.COM and HELP.EXE +--------+-----drivers DEVICE.LIB +--------+-----fs common kernel and ipl fs manage files +--------+-----ipl IPL.SYS +--------+-----kernel KERNEL.EXE +--------+-----misc miscellaneous files for kernel and ipl +--------+-----tmp +--------+-----utils SYS.EXE-his diskette contains DOS-C version 1.0 Beta 2 for PC/XT/AT/AT386/AT486 computers. This is the December 6, 1998 release in an ongoing project. There is a companion book, "The FreeDOS Kernel" (ISBN: 0-87930-436-7) published by R&D Books, an imprint of Miller Freeman of Lawrence, Kansas (USA) and distributed in the USA and Canada by Publishers Group West.
Platform: | Size: 614400 | Author: king | Hits:

[Software Engineeringhtmlparser-c

Description: 一个数据采集系统,作者的注释非常详细,里面的doc文档记录了作者整个开发的思路,绝对值得参考-A data acquisition system, of very detailed notes, which the doc document records the entire development of the idea, absolutely worthy of reference
Platform: | Size: 291840 | Author: 萧萧 | Hits:

[Graph Drawingfreeglut_pre_compiled

Description: These are the freeglut pre compiled files / Sometimes it gets really hard when you are a novice to get these things done properly so you can you them in projects. Here they are now fot you to use - free of charge Files included: [doc] freeglut.dll freeglut.dll freeglut.lib freeglut_ext.h freeglut_std.h glut.h-These are the freeglut pre compiled files / Sometimes it gets really hard when you are a novice to get these things done properly so you can you them in projects. Here they are now fot you to use - free of charge Files included: [doc] freeglut.dll freeglut.dll freeglut.lib freeglut_ext.h freeglut_std.h glut.h
Platform: | Size: 145408 | Author: mrlbr | Hits:

[OpenCVCB2010_OpenCV

Description: 真正可以在c++ builder 2010 下编译的Opencv文件。压缩包中包含必须的dll,lib和h文件,并有OpenCVExample.cbproj可测试运行,具体信息见doc文档。-The real opencv project in c++ builder 2010. the attachment consists of the needed dll,lib and h files. the OpenCVExample.cbproj can be open and run. the detail information refer to doc document.
Platform: | Size: 9320448 | Author: 远航 | Hits:

[Windows Developreplace

Description: 可以批量查找,替换文件内部内容的工具,wxpython实现,支持gbk,utf-8编码,常用文件格式doc,txt,h,cpp等均能正常工作,有注释。-Can batch search and replace the contents of the file within the tool, wxpython implementation, support gbk, utf-8 encoding, commonly used file format doc, txt, h, cpp, etc. can work properly, there are comments.
Platform: | Size: 2048 | Author: | Hits:

[3D GraphicDepth-image-based-rendering

Description: This program implements the rendering framework that is used in the paper D. De Silva, W. Fernando, and H. Kodikaraarachchi, “A NEW MODE SELECTION TECHNIQUE FOR CODING DEPTH MAPS OF 3D VIDEO,” IEEE International Conference on Acoustics, Speech and Signal Processing, ICASSP 2010. pp. 686-689. Mar. 2010. which has the following features: 1. Depth maps are interpreted according to the MPEG Informative Recommendations in MPEG Doc. N8038. 2. Left image is rendered Right most pixel to the Left most pixel and Right Image is rendered vice versa. This is done to make sure that no background pixels would appear as foreground. 3. Disocclusions are filled with Background pixel extrapolation, however with some small modifications. Disocclusions are filled in the opposite direction to rendering. - This program implements the rendering framework that is used in the paper D. De Silva, W. Fernando, and H. Kodikaraarachchi, “A NEW MODE SELECTION TECHNIQUE FOR CODING DEPTH MAPS OF 3D VIDEO,” IEEE International Conference on Acoustics, Speech and Signal Processing, ICASSP 2010. pp. 686-689. Mar. 2010. which has the following features: 1. Depth maps are interpreted according to the MPEG Informative Recommendations in MPEG Doc. N8038. 2. Left image is rendered Right most pixel to the Left most pixel and Right Image is rendered vice versa. This is done to make sure that no background pixels would appear as foreground. 3. Disocclusions are filled with Background pixel extrapolation, however with some small modifications. Disocclusions are filled in the opposite direction to rendering.
Platform: | Size: 1412096 | Author: phonox | Hits:

[Embeded-SCM DevelopVector_CCP

Description: Vector的CCP协议源代码实现的样例和文档。(File CCP.ZIP: CCP Driver Sourcecode: CCP.C CCP 2.1 Driver ANSI-C Source CCP.H CCP 2.1 Driver Include File CCPPAR.H Include File for customizing CCP.C Documentation: DOC\ CCP21.PDF ASAM CCP 2.1 Specification (Acrobat Reader) CCP.DOC Reference Documentation for the CCP Driver CCP.C (MS Word) CCPINTRO.PDF Small Introduction to CCP (Acrobat Reader) Platform dependend code examples: CANDRV\ CAN_CCP.C Platform specific code examples Interface to FLASH and EEPROM programming Interface to Vector embedded CAN Drivers)
Platform: | Size: 2953216 | Author: jjs008 | Hits:

CodeBus www.codebus.net