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
x264_gtk_encode_private.h
Package: chapter15.rar [view]
Upload User: hjq518
Upload Date: 2021-12-09
Package Size: 5084k
Code Size: 2k
Category:
Audio program
Development Platform:
Visual C++
- /*****************************************************************************
- * x264_gtk_encode_private.h: h264 gtk encoder frontend
- *****************************************************************************
- * Copyright (C) 2006 Vincent Torri
- *
- * 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 02111, USA.
- *****************************************************************************/
- #ifndef X264_GTK_ENCODE_PRIVATE_H
- #define X264_GTK_ENCODE_PRIVATE_H
- #include <common/osdep.h>
- #include "x264_gtk_demuxers.h"
- typedef struct X264_Thread_Data_ X264_Thread_Data;
- typedef struct X264_Pipe_Data_ X264_Pipe_Data;
- struct X264_Thread_Data_
- {
- GtkWidget *current_video_frame;
- GtkWidget *video_data;
- GtkWidget *video_rendering_rate;
- GtkWidget *time_elapsed;
- GtkWidget *time_remaining;
- GtkWidget *progress;
- GtkWidget *dialog;
- GtkWidget *button;
- GtkWidget *end_button;
- x264_param_t *param;
- gchar *file_input;
- X264_Demuxer_Type in_container;
- gchar *file_output;
- gint out_container;
- /* file descriptors */
- GIOChannel *io_read; /* use it with read */
- GIOChannel *io_write; /* use it with write */
- };
- struct X264_Pipe_Data_
- {
- int frame;
- int frame_total;
- int file;
- int64_t elapsed;
- };
- #endif /* X264_GTK_ENCODE_PRIVATE_H */