Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
resource.h
Package: vlc-1.0.5.zip [view]
Upload User: kjfoods
Upload Date: 2020-07-06
Package Size: 29949k
Code Size: 3k
Category:
midi program
Development Platform:
Unix_Linux
- /*****************************************************************************
- * resource.h
- *****************************************************************************
- * Copyright (C) 2008 Laurent Aimar
- * $Id: 15bc377b2414702afa3bbca2f18344396c18d49a $
- *
- * Authors: Laurent Aimar < fenrir _AT_ videolan _DOT_ org >
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- *****************************************************************************/
- #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__)
- # error This header file can only be included from LibVLC.
- #endif
- #ifndef _INPUT_RESOURCE_H
- #define _INPUT_RESOURCE_H 1
- #include <vlc_common.h>
- /**
- * This function creates an empty input_resource_t.
- */
- input_resource_t *input_resource_New( void );
- /**
- * This function set the associated input.
- */
- void input_resource_SetInput( input_resource_t *, input_thread_t * );
- /**
- * This function return a input_resource_t with all resources detach from the
- * given input_resource_t.
- * It must not be associated to an input.
- */
- input_resource_t *input_resource_Detach( input_resource_t * );
- /**
- * This function handles sout request.
- */
- sout_instance_t *input_resource_RequestSout( input_resource_t *, sout_instance_t *, const char *psz_sout );
- /**
- * This function handles aout request.
- */
- aout_instance_t *input_resource_RequestAout( input_resource_t *, aout_instance_t * );
- /**
- * This function return the current aout if any.
- *
- * You must call vlc_object_release on the value returned (if non NULL).
- */
- aout_instance_t *input_resource_HoldAout( input_resource_t *p_resource );
- /**
- * This function handles vout request.
- */
- vout_thread_t *input_resource_RequestVout( input_resource_t *, vout_thread_t *, video_format_t *, bool b_recycle );
- /**
- * This function return one of the current vout if any.
- *
- * You must call vlc_object_release on the value returned (if non NULL).
- */
- vout_thread_t *input_resource_HoldVout( input_resource_t * );
- /**
- * This function return all current vouts if any.
- *
- * You must call vlc_object_release on all values returned (if non NULL).
- */
- void input_resource_HoldVouts( input_resource_t *, vout_thread_t ***, int * );
- #endif