www.pudn.com > p64dir.rar > stream.c
/************************************************************* Copyright (C) 1990, 1991, 1993 Andy C. Hung, all rights reserved. PUBLIC DOMAIN LICENSE: Stanford University Portable Video Research Group. If you use this software, you agree to the following: This program package is purely experimental, and is licensed "as is". Permission is granted to use, modify, and distribute this program without charge for any purpose, provided this license/ disclaimer notice appears in the copies. No warranty or maintenance is given, either expressed or implied. In no event shall the author(s) be liable to you or a third party for any special, incidental, consequential, or other damages, arising out of the use or inability to use the program for any purpose (or the loss of data), even if we have been advised of such possibilities. Any public reference or advertisement of this source code should refer to it as the Portable Video Research Group (PVRG) code, and not by any author(s) (or Stanford University) name. *************************************************************/ /* ************************************************************ stream.c This file handles all of the bit-level stream commands. ************************************************************ */ /*LABEL stream.c */ #include#include "globals.h" /*PUBLIC*/ extern void mropen(); extern void mrclose(); extern void mwopen(); extern void mwclose(); extern int mgetb(); extern void mputv(); extern int mgetv(); extern long mwtell(); extern long mrtell(); extern void mwseek(); extern void mrseek(); extern int seof(); /*PRIVATE*/ extern int ErrorValue; static FILE *swout; static FILE *srin; static int current_write_byte; static int current_read_byte; static int read_position; static int write_position; int bit_set_mask[] = {0x00000001,0x00000002,0x00000004,0x00000008, 0x00000010,0x00000020,0x00000040,0x00000080, 0x00000100,0x00000200,0x00000400,0x00000800, 0x00001000,0x00002000,0x00004000,0x00008000, 0x00010000,0x00020000,0x00040000,0x00080000, 0x00100000,0x00200000,0x00400000,0x00800000, 0x01000000,0x02000000,0x04000000,0x08000000, 0x10000000,0x20000000,0x40000000,0x80000000}; #define mput1()\ {current_write_byte|=bit_set_mask[write_position--];\ if (write_position<0) {putc(current_write_byte,swout); write_position=7;current_write_byte=0;}} #define mput0()\ {write_position--;if(write_position<0){putc(current_write_byte,swout);write_position=7;current_write_byte=0;}} /*START*/ /*BFUNC mropen() opens up the stream for reading on a bit level. EFUNC*/ void mropen(filename) char *filename; { BEGIN("mropen"); current_read_byte=0; read_position = -1; if ((srin = fopen(filename,"r")) == NULL) { fprintf(stderr,"Cannot Read Input File\n"); exit(ERROR_INIT_FILE); } } /*BFUNC mrclose() closes a read bit-stream. EFUNC*/ void mrclose() { BEGIN("mrclose"); fclose(srin); } /*BFUNC mwopen() opens a bit stream for writing. EFUNC*/ void mwopen(filename) char *filename; { BEGIN("mwopen"); current_write_byte=0; write_position=7; if ((swout = fopen(filename,"w+")) == NULL) { WHEREAMI(); printf("Cannot Open Output File\n"); exit(ERROR_INIT_FILE); } } /*BFUNC mwclose() closes the write bit-stream. It flushes the remaining byte with ones, consistent with -1 returned on EOF. EFUNC*/ void mwclose() { BEGIN("mwclose"); while(write_position!=7) { mput1(); } fclose(swout); } /*BFUNC mputb() puts a bit to the write stream. EFUNC*/ void mputb(b) int b; { BEGIN("mputb"); if (b) {mput1();} else {mput0();} } /*BFUNC mgetb() returns a bit from the read stream. EFUNC*/ int mgetb() { BEGIN("mgetb"); if (read_position<0) { current_read_byte=getc(srin); read_position = 7; } if (current_read_byte&bit_set_mask[read_position--]) {return(1);} return(0); } /*BFUNC mputv() puts a n bits to the stream from byte b. EFUNC*/ void mputv(n,b) int n; int b; { BEGIN("mputv"); while(n--) { if(b&bit_set_mask[n]) {mput1();} else {mput0();} } } /*BFUNC mgetv() returns n bits read off of the read stream. EFUNC*/ int mgetv(n) int n; { BEGIN("mgetv"); int b=0; while(n--) { b <<= 1; if (mgetb()) {b |= 1;} } return(b); } /*BFUNC mwtell() returns the position in bits of the write stream. EFUNC*/ long mwtell() { BEGIN("mwtell"); return((ftell(swout)<<3) + (7 - write_position)); } /*BFUNC mrtell() returns the position in read bits of the read stream. EFUNC*/ long mrtell() { BEGIN("mrtell"); return((ftell(srin)<<3) - (read_position+1)); } /*BFUNC mwseek() seeks to a specific bit position on the write stream. EFUNC*/ void mwseek(distance) long distance; { BEGIN("mwseek"); int Length; if (write_position != 7) {putc(current_write_byte,swout);} fseek(swout,0,2L); Length = ftell(swout); fseek(swout,(distance+7)>>3,0L); if ((Length << 3) <= distance) /* Make sure we read clean stuff */ { current_write_byte = 0; write_position = 7 - (distance & 0x7); } else { current_write_byte = getc(swout); write_position = 7 - (distance & 0x7); fseek(swout,(distance+7)>>3,0L); } } /*BFUNC mrseek() seeks to a specific bit position on the read stream. EFUNC*/ void mrseek(distance) long distance; { BEGIN("mrseek"); fseek(srin,distance>>3,0L); current_read_byte = getc(srin); read_position = 7 - (distance % 8); } /*BFUNC seof() returns a -1 if at the end of stream. It mimics the {\tt feof} command. EFUNC*/ int seof() { BEGIN("seof"); return(feof(srin)); } /*END*/