欢迎来到虫虫下载站 | 资源下载 资源专辑 关于我们
虫虫下载站

dump_video.c

mediastreamer2是开源的网络传输媒体流的库
C
字号:
/******************************************************************** *                                                                  * * THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE.   * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     * * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       * *                                                                  * * THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2004                * * by the Xiph.Org Foundation http://www.xiph.org/                  * *                                                                  * ********************************************************************  function: example dumpvid application; dumps  Theora streams  last mod: $Id: dump_video.c 11592 2006-06-20 00:24:25Z xiphmont $ ********************************************************************//* By Mauricio Piacentini (mauricio at xiph.org) *//*  simply dump decoded YUV data, for verification of theora bitstream */#ifdef HAVE_CONFIG_H# include <config.h>#endif#define _GNU_SOURCE#define _LARGEFILE_SOURCE#define _LARGEFILE64_SOURCE#define _FILE_OFFSET_BITS 64#include <stdio.h>#ifndef WIN32 #include <unistd.h>#endif#include <stdlib.h>#include <string.h>#include <sys/types.h>#include <sys/stat.h>#include <sys/time.h>#if defined(_WIN32)#include <io.h>#endif#include <fcntl.h>#include <math.h>#include <signal.h>#include "getopt.h"#include "theora/theora.h"const char *optstring = "o:rf";struct option options [] = {  {"output",required_argument,NULL,'o'},  {"raw",no_argument, NULL, 'r'}, /* Disable YUV4MPEG2 headers if set */  {"fps-only",no_argument, NULL, 'f'}, /* Only interested in fps of decode loop */  {NULL,0,NULL,0}};/* Helper; just grab some more compressed bitstream and sync it for   page extraction */int buffer_data(FILE *in,ogg_sync_state *oy){  char *buffer=ogg_sync_buffer(oy,4096);  int bytes=fread(buffer,1,4096,in);  ogg_sync_wrote(oy,bytes);  return(bytes);}/* never forget that globals are a one-way ticket to Hell *//* Ogg and codec state for demux/decode */ogg_sync_state   oy;ogg_page         og;ogg_stream_state vo;ogg_stream_state to;theora_info      ti;theora_comment   tc;theora_state     td;int              theora_p=0;int              stateflag=0;/* single frame video buffering */int          videobuf_ready=0;ogg_int64_t  videobuf_granulepos=-1;double       videobuf_time=0;int          raw = 0;FILE* outfile = NULL;int got_sigint=0;static void sigint_handler (int signal) {  got_sigint = 1;}/* this is a nop in the current implementation. we could   open a file here or something if so moved. */static void open_video(void){   return;}/* write out the planar YUV frame, uncropped */static void video_write(void){  int i;  yuv_buffer yuv;  theora_decode_YUVout(&td,&yuv);  if(outfile){    if(!raw)      fprintf(outfile, "FRAME\n");    for(i=0;i<yuv.y_height;i++)      fwrite(yuv.y+yuv.y_stride*i, 1, yuv.y_width, outfile);    for(i=0;i<yuv.uv_height;i++)      fwrite(yuv.u+yuv.uv_stride*i, 1, yuv.uv_width, outfile);    for(i=0;i<yuv.uv_height;i++)      fwrite(yuv.v+yuv.uv_stride*i, 1, yuv.uv_width, outfile);  }}/* dump the theora comment header */static int dump_comments(theora_comment *tc){  int i, len;  char *value;  FILE *out=stdout;  fprintf(out,"Encoded by %s\n",tc->vendor);  if(tc->comments){    fprintf(out, "theora comment header:\n");    for(i=0;i<tc->comments;i++){      if(tc->user_comments[i]){        len=tc->comment_lengths[i];        value=malloc(len+1);        memcpy(value,tc->user_comments[i],len);        value[len]='\0';        fprintf(out, "\t%s\n", value);        free(value);      }    }  }  return(0);}/* helper: push a page into the steam for packetization */static int queue_page(ogg_page *page){  if(theora_p)ogg_stream_pagein(&to,&og);  return 0;}static void usage(void){  fprintf(stderr,          "Usage: dumpvid <file.ogg> > outfile\n"          "input is read from stdin if no file is passed on the command line\n"          "\n"  );}int main(int argc,char *argv[]){  ogg_packet op;  int long_option_index;  int c;  FILE *infile = stdin;  outfile = stdout;  struct timeval start;  struct timeval after;  struct timeval last;  int fps_only=0;  int frames=0;#ifdef _WIN32 /* We need to set stdin/stdout to binary mode on windows. */  /* Beware the evil ifdef. We avoid these where we can, but this one we     cannot. Don't add any more, you'll probably go to hell if you do. */  _setmode( _fileno( stdin ), _O_BINARY );  _setmode( _fileno( stdout ), _O_BINARY );#endif  /* Process option arguments. */  while((c=getopt_long(argc,argv,optstring,options,&long_option_index))!=EOF){    switch(c){    case 'o':      if(!strcmp(optarg,"-")){	outfile=fopen(optarg,"wb");	if(outfile==NULL){	  fprintf(stderr,"Unable to open output file '%s'\n", optarg);	  exit(1);	}      }else{	outfile=stdout;      }      break;          case 'r':      raw = 1;      break;          case 'f':      fps_only = 1;      outfile=NULL;      break;      default:        usage();    }  }  if(optind<argc){    infile=fopen(argv[optind],"rb");    if(infile==NULL){      fprintf(stderr,"Unable to open '%s' for extraction.\n", argv[optind]);      exit(1);    }    if(++optind<argc){      usage();      exit(1);    }  }  /*     Ok, Ogg parsing. The idea here is we have a bitstream     that is made up of Ogg pages. The libogg sync layer will     find them for us. There may be pages from several logical     streams interleaved; we find the first theora stream and     ignore any others.     Then we pass the pages for our stream to the libogg stream     layer which assembles our original set of packets out of     them. It's the packets that libtheora actually knows how     to handle.  */  /* start up Ogg stream synchronization layer */  ogg_sync_init(&oy);  /* init supporting Theora structures needed in header parsing */  theora_comment_init(&tc);  theora_info_init(&ti);  /* Ogg file open; parse the headers */  /* Vorbis and Theora both depend on some initial header packets     for decoder setup and initialization. We retrieve these first     before entering the main decode loop. */  /* Only interested in Theora streams */  while(!stateflag){    int ret=buffer_data(infile,&oy);    if(ret==0)break;    while(ogg_sync_pageout(&oy,&og)>0){      ogg_stream_state test;      /* is this a mandated initial header? If not, stop parsing */      if(!ogg_page_bos(&og)){        /* don't leak the page; get it into the appropriate stream */        queue_page(&og);        stateflag=1;        break;      }      ogg_stream_init(&test,ogg_page_serialno(&og));      ogg_stream_pagein(&test,&og);      ogg_stream_packetout(&test,&op);      /* identify the codec: try theora */      if(!theora_p && theora_decode_header(&ti,&tc,&op)>=0){        /* it is theora -- save this stream state */        memcpy(&to,&test,sizeof(test));        theora_p=1;      }else{        /* whatever it is, we don't care about it */        ogg_stream_clear(&test);      }    }    /* fall through to non-initial page parsing */  }  /* we're expecting more header packets. */  while(theora_p && theora_p<3){    int ret;    /* look for further theora headers */    while(theora_p && (theora_p<3) && (ret=ogg_stream_packetout(&to,&op))){      if(ret<0){        fprintf(stderr,"Error parsing Theora stream headers; corrupt stream?\n");        exit(1);      }      if(theora_decode_header(&ti,&tc,&op)){        printf("Error parsing Theora stream headers; corrupt stream?\n");        exit(1);      }      theora_p++;      if(theora_p==3)break;    }    /* The header pages/packets will arrive before anything else we       care about, or the stream is not obeying spec */    if(ogg_sync_pageout(&oy,&og)>0){      queue_page(&og); /* demux into the stream state */    }else{      int ret=buffer_data(infile,&oy); /* need more data */      if(ret==0){        fprintf(stderr,"End of file while searching for codec headers.\n");        exit(1);      }    }  }  /* Now we have all the required headers. initialize the decoder. */  if(theora_p){    theora_decode_init(&td,&ti);    fprintf(stderr,"Ogg logical stream %x is Theora %dx%d %.02f fps video\nEncoded frame content is %dx%d with %dx%d offset\n",            (unsigned int)to.serialno,ti.width,ti.height, 	    (double)ti.fps_numerator/ti.fps_denominator,            ti.frame_width, ti.frame_height, ti.offset_x, ti.offset_y);  }else{    /* tear down the partial theora setup */    theora_info_clear(&ti);    theora_comment_clear(&tc);  }  /* open video */  if(theora_p)open_video();  if(!raw && outfile)    fprintf(outfile, "YUV4MPEG2 W%d H%d F%d:%d I%c A%d:%d\n",          ti.width, ti.height, ti.fps_numerator, ti.fps_denominator, 'p',           ti.aspect_numerator, ti.aspect_denominator);  /* install signal handler */  signal (SIGINT, sigint_handler);  /* Finally the main decode loop.      It's one Theora packet per frame, so this is pretty      straightforward if we're not trying to maintain sync     with other multiplexed streams.     the videobuf_ready flag is used to maintain the input     buffer in the libogg stream state. If there's no output     frame available at the end of the decode step, we must     need more input data. We could simplify this by just      using the return code on ogg_page_packetout(), but the     flag system extends easily to the case were you care     about more than one multiplexed stream (like with audio     playback). In that case, just maintain a flag for each     decoder you care about, and pull data when any one of     them stalls.     videobuf_time holds the presentation time of the currently     buffered video frame. We ignore this value.  */  stateflag=0; /* playback has not begun */  /* queue any remaining pages from data we buffered but that did not      contain headers */  while(ogg_sync_pageout(&oy,&og)>0){    queue_page(&og);  }  if(fps_only){    gettimeofday(&start,NULL);    gettimeofday(&last,NULL);  }  while(!got_sigint){        while(theora_p && !videobuf_ready){      /* theora is one in, one out... */      if(ogg_stream_packetout(&to,&op)>0){        theora_decode_packetin(&td,&op);        videobuf_granulepos=td.granulepos;        videobuf_time=theora_granule_time(&td,videobuf_granulepos);        videobuf_ready=1;	frames++;	if(fps_only)	  gettimeofday(&after,NULL);      }else        break;    }    if(fps_only && (videobuf_ready || fps_only==2)){      long ms = 	after.tv_sec*1000.+after.tv_usec*.001-	(last.tv_sec*1000.+last.tv_usec*.001);      if(ms>500 || fps_only==1 || 	 (feof(infile) && !videobuf_ready)){	float file_fps = (float)ti.fps_numerator/ti.fps_denominator;	fps_only=2;		ms = after.tv_sec*1000.+after.tv_usec*.001-	  (start.tv_sec*1000.+start.tv_usec*.001);		fprintf(stderr,"\rframe:%d rate:%.2fx           ",		frames, 		frames*1000./(ms*file_fps));	memcpy(&last,&after,sizeof(last));      }    }        if(!videobuf_ready && feof(infile))break;    if(!videobuf_ready){      /* no data yet for somebody.  Grab another page */      buffer_data(infile,&oy);      while(ogg_sync_pageout(&oy,&og)>0){        queue_page(&og);      }    }    /* dumpvideo frame, and get new one */    else video_write();    videobuf_ready=0;  }  /* end of decoder loop -- close everything */  if(theora_p){    ogg_stream_clear(&to);    theora_clear(&td);    theora_comment_clear(&tc);    theora_info_clear(&ti);  }  ogg_sync_clear(&oy);  if(infile && infile!=stdin)fclose(infile);  fprintf(stderr,          "\n                                                              "          "\nDone.\n");  return(0);}

⌨️ 快捷键说明

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