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

📄 noparallel.c

📁 linux下将各类格式图片转换工具
💻 C
字号:
/*===========================================================================* * noparallel.c * *  would be procedures to make encoder to run in parallel -- except *  this machine doesn't have sockets, so we can only run sequentially *  so this file has dummy procedures which lets it compile * *===========================================================================*//* * Copyright (c) 1995 The Regents of the University of California. * All rights reserved. * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose, without fee, and without written agreement is * hereby granted, provided that the above copyright notice and the following * two paragraphs appear in all copies of this software. * * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. *//*==============* * HEADER FILES * *==============*/#include <time.h>#include <pm.h>#include "all.h"#include "mtypes.h"#include "parallel.h"#include "frame.h"/*==================* * GLOBAL VARIABLES * *==================*/int parallelTestFrames = 10;int parallelTimeChunks = 60;const char *IOhostName;int ioPortNumber;int combinePortNumber;int decodePortNumber;boolean niceProcesses = FALSE;boolean forceIalign = FALSE;int     machineNumber = -1;boolean remoteIO = FALSE;boolean separateConversion;time_t  IOtime = 0;/*=====================* * EXPORTED PROCEDURES * *=====================*//*=================* * IO SERVER STUFF * *=================*/voidIoServer(struct inputSource * const inputSourceP,         const char *         const parallelHostName,          int                  const portNum) {    pm_error("This version of Ppmtompeg cannot run an I/O server because "             "it does not have socket capability.");}voidSetIOConvert(separate)    boolean separate;{    /* do nothing -- this may be called during non-parallel execution */}voidSetParallelPerfect(boolean val){    /* do nothing -- this may be called during non-parallel execution */}voidSetRemoteShell(const char * const shell){    /* do nothing -- this may be called during non-parallel execution */}voidNoteFrameDone(frameStart, frameEnd)    int frameStart;    int frameEnd;{    fprintf(stdout, "ERROR:  (NoteFrameDone) This machine can NOT run parallel version\n");    exit(1);}/* SendRemoteFrame */voidSendRemoteFrame(frameNumber, bb)    int frameNumber;    BitBucket *bb;{    fprintf(stdout, "ERROR:  (SendRemoteFrame) This machine can NOT run parallel version\n");    exit(1);}/* GetRemoteFrame */voidGetRemoteFrame(frame, frameNumber)    MpegFrame *frame;    int frameNumber;{    fprintf(stdout, "ERROR:  (GetRemoteFrame) This machine can NOT run parallel version\n");    exit(1);}voidWaitForOutputFile(number)    int number;{    fprintf(stdout, "ERROR:  (WaitForOutputFile) This machine can NOT run parallel version\n");    exit(1);}/*=======================* * PARALLEL SERVER STUFF * *=======================*/voidMasterServer(struct inputSource * const inputSourceP,             const char *         const paramFileName,              const char *         const outputFileName) {    pm_error("This version of Ppmtompeg cannot run a master server because "             "it does not have socket capability.");}voidCombineServer(int          const numFrames,               const char * const masterHostName,               int          const masterPortNum) {    pm_error("This version of Ppmtompeg cannot run combine server because "             "it does not have socket capability.");}voidDecodeServer(int          const numInputFiles,              const char * const decodeFileName,              const char * const masterHostName,              int          const masterPortNum) {    pm_error("This version of Ppmtompeg cannot run a decode server because "             "it does not have socket capability.");}/* NotifyMasterDone */voidNotifyMasterDone(const char * const hostName,                  int          const portNum,                  int          const machineNumber,                  unsigned int const seconds,                 boolean *    const moreWorkToDoP,                 int *        const frameStartP,                 int *        const frameEndP){    pm_error("This version of Ppmtompeg cannot run parallel mode because "             "it does not have socket capability.");}voidNotifyDecodeServerReady(id)    int id;{    pm_error("This version of Ppmtompeg cannot run parallel mode because "             "it does not have socket capability.");}voidWaitForDecodedFrame(id)    int id;{    pm_error("This version of Ppmtompeg cannot run parallel mode because "             "it does not have socket capability.");}voidSendDecodedFrame(frame)    MpegFrame *frame;{    pm_error("This version of Ppmtompeg cannot run parallel mode because "             "it does not have socket capability.");}voidGetRemoteDecodedRefFrame(frame, frameNumber)    MpegFrame *frame;    int frameNumber;{    pm_error("This version of Ppmtompeg cannot run parallel mode because "             "it does not have socket capability.");}

⌨️ 快捷键说明

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