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

📄 encoder_example.c

📁 mediastreamer2是开源的网络传输媒体流的库
💻 C
📖 第 1 页 / 共 2 页
字号:
/******************************************************************** *                                                                  * * 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-2003                * * by the Xiph.Org Foundation http://www.xiph.org/                  * *                                                                  * ********************************************************************  function: example encoder application; makes an Ogg Theora/Vorbis            file from YUV4MPEG2 and WAV input  last mod: $Id: encoder_example.c 11451 2006-05-28 18:18:26Z illiminable $ ********************************************************************/#define _GNU_SOURCE#define _LARGEFILE_SOURCE#define _LARGEFILE64_SOURCE#define _FILE_OFFSET_BITS 64/* Define to give performance data win32 only*///#define THEORA_PERF_DATA #ifdef THEORA_PERF_DATA#include <windows.h>#endif#ifdef HAVE_CONFIG_H# include <config.h>#endif#ifndef _REENTRANT# define _REENTRANT#endif#include <stdio.h>#ifndef WIN32#include <unistd.h>#endif#include <stdlib.h>#include <string.h>#ifndef WIN32#include <getopt.h>#else#include "getopt.h"#endif#include <time.h>#include <math.h>#include "theora/theora.h"#include "vorbis/codec.h"#include "vorbis/vorbisenc.h"#ifdef _WIN32/* supply missing headers and functions to Win32 */#include <fcntl.h>static double rint(double x){  if (x < 0.0)    return (double)(int)(x - 0.5);  else    return (double)(int)(x + 0.5);}#endifconst char *optstring = "o:a:A:v:V:s:S:f:F:";struct option options [] = {  {"output",required_argument,NULL,'o'},  {"audio-rate-target",required_argument,NULL,'A'},  {"video-rate-target",required_argument,NULL,'V'},  {"audio-quality",required_argument,NULL,'a'},  {"video-quality",required_argument,NULL,'v'},  {"aspect-numerator",optional_argument,NULL,'s'},  {"aspect-denominator",optional_argument,NULL,'S'},  {"framerate-numerator",optional_argument,NULL,'f'},  {"framerate-denominator",optional_argument,NULL,'F'},  {NULL,0,NULL,0}};/* You'll go to Hell for using globals. */FILE *audio=NULL;FILE *video=NULL;int audio_ch=0;int audio_hz=0;float audio_q=.1;int audio_r=-1;int video_x=0;int video_y=0;int frame_x=0;int frame_y=0;int frame_x_offset=0;int frame_y_offset=0;int video_hzn=-1;int video_hzd=-1;int video_an=-1;int video_ad=-1;int video_r=-1;int video_q=16;static void usage(void){  fprintf(stderr,          "Usage: encoder_example [options] [audio_file] video_file\n\n"          "Options: \n\n"          "  -o --output <filename.ogg>     file name for encoded output;\n"          "                                 If this option is not given, the\n"          "                                 compressed data is sent to stdout.\n\n"          "  -A --audio-rate-target <n>     bitrate target for Vorbis audio;\n"          "                                 use -a and not -A if at all possible,\n"          "                                 as -a gives higher quality for a given\n"          "                                 bitrate.\n\n"          "  -V --video-rate-target <n>     bitrate target for Theora video\n\n"          "  -a --audio-quality <n>         Vorbis quality selector from -1 to 10\n"          "                                 (-1 yields smallest files but lowest\n"          "                                 fidelity; 10 yields highest fidelity\n"          "                                 but large files. '2' is a reasonable\n"          "                                 default).\n\n"          "   -v --video-quality <n>        Theora quality selector fro 0 to 10\n"          "                                 (0 yields smallest files but lowest\n"          "                                 video quality. 10 yields highest\n"          "                                 fidelity but large files).\n\n"          "   -s --aspect-numerator <n>     Aspect ratio numerator, default is 0\n"          "                                 or extracted from YUV input file\n"          "   -S --aspect-denominator <n>   Aspect ratio denominator, default is 0\n"          "                                 or extracted from YUV input file\n"          "   -f --framerate-numerator <n>  Frame rate numerator, can be extracted\n"          "                                 from YUV input file. ex: 30000000\n"          "   -F --framerate-denominator <n>Frame rate denominator, can be extracted\n"          "                                 from YUV input file. ex: 1000000\n"          "                                 The frame rate nominator divided by this\n"          "                                 determinates the frame rate in units per tick\n"          "encoder_example accepts only uncompressed RIFF WAV format audio and\n"          "YUV4MPEG2 uncompressed video.\n\n");  exit(1);}static void id_file(char *f){  FILE *test;  unsigned char buffer[80];  int ret;  int tmp_video_hzn, tmp_video_hzd, tmp_video_an, tmp_video_ad;  int extra_hdr_bytes;  /* open it, look for magic */  if(!strcmp(f,"-")){    /* stdin */    test=stdin;  }else{    test=fopen(f,"rb");    if(!test){      fprintf(stderr,"Unable to open file %s.\n",f);      exit(1);    }  }  ret=fread(buffer,1,4,test);  if(ret<4){    fprintf(stderr,"EOF determining file type of file %s.\n",f);    exit(1);  }  if(!memcmp(buffer,"RIFF",4)){    /* possible WAV file */    if(audio){      /* umm, we already have one */      fprintf(stderr,"Multiple RIFF WAVE files specified on command line.\n");      exit(1);    }    /* Parse the rest of the header */    ret=fread(buffer,1,4,test);    ret=fread(buffer,1,4,test);    if(ret<4)goto riff_err;    if(!memcmp(buffer,"WAVE",4)){      while(!feof(test)){        ret=fread(buffer,1,4,test);        if(ret<4)goto riff_err;        if(!memcmp("fmt",buffer,3)){          /* OK, this is our audio specs chunk.  Slurp it up. */          ret=fread(buffer,1,20,test);          if(ret<20)goto riff_err;          extra_hdr_bytes = (buffer[0]  + (buffer[1] << 8) +                            (buffer[2] << 16) + (buffer[3] << 24)) - 16;          if(memcmp(buffer+4,"\001\000",2)){            fprintf(stderr,"The WAV file %s is in a compressed format; "                    "can't read it.\n",f);            exit(1);          }          audio=test;          audio_ch=buffer[6]+(buffer[7]<<8);          audio_hz=buffer[8]+(buffer[9]<<8)+            (buffer[10]<<16)+(buffer[11]<<24);          if(buffer[18]+(buffer[19]<<8)!=16){            fprintf(stderr,"Can only read 16 bit WAV files for now.\n");            exit(1);          }          /* read past extra header bytes */          while(extra_hdr_bytes){            int read_size = (extra_hdr_bytes > sizeof(buffer)) ?             sizeof(buffer) : extra_hdr_bytes;            ret = fread(buffer, 1, read_size, test);            if (ret < read_size)              goto riff_err;            else              extra_hdr_bytes -= read_size;          }          /* Now, align things to the beginning of the data */          /* Look for 'dataxxxx' */          while(!feof(test)){            ret=fread(buffer,1,4,test);            if(ret<4)goto riff_err;            if(!memcmp("data",buffer,4)){              /* We're there.  Ignore the declared size for now. */              ret=fread(buffer,1,4,test);              if(ret<4)goto riff_err;              fprintf(stderr,"File %s is 16 bit %d channel %d Hz RIFF WAV audio.\n",                      f,audio_ch,audio_hz);              return;            }          }        }      }    }    fprintf(stderr,"Couldn't find WAVE data in RIFF file %s.\n",f);    exit(1);  }  if(!memcmp(buffer,"YUV4",4)){    /* possible YUV2MPEG2 format file */    /* read until newline, or 80 cols, whichever happens first */    int i;    for(i=0;i<79;i++){      ret=fread(buffer+i,1,1,test);      if(ret<1)goto yuv_err;      if(buffer[i]=='\n')break;    }    if(i==79){      fprintf(stderr,"Error parsing %s header; not a YUV2MPEG2 file?\n",f);    }    buffer[i]='\0';    if(!memcmp(buffer,"MPEG",4)){      char interlace;      if(video){        /* umm, we already have one */        fprintf(stderr,"Multiple video files specified on command line.\n");        exit(1);      }      if(buffer[4]!='2'){        fprintf(stderr,"Incorrect YUV input file version; YUV4MPEG2 required.\n");      }      ret=sscanf((char *)buffer,"MPEG2 W%d H%d F%d:%d I%c A%d:%d",                 &frame_x,&frame_y,&tmp_video_hzn,&tmp_video_hzd,&interlace,                 &tmp_video_an,&tmp_video_ad);      if(ret<7){        fprintf(stderr,"Error parsing YUV4MPEG2 header in file %s.\n",f);        exit(1);      }      /* update fps and aspect ratio globals if not specified in the command line */      if (video_hzn==-1) video_hzn = tmp_video_hzn;      if (video_hzd==-1) video_hzd = tmp_video_hzd;      if (video_an==-1) video_an = tmp_video_an;      if (video_ad==-1) video_ad = tmp_video_ad;      if(interlace!='p'){        fprintf(stderr,"Input video is interlaced; Theora handles only progressive scan\n");        exit(1);      }      video=test;      fprintf(stderr,"File %s is %dx%d %.02f fps YUV12 video.\n",              f,frame_x,frame_y,(double)video_hzn/video_hzd);      return;    }  }  fprintf(stderr,"Input file %s is neither a WAV nor YUV4MPEG2 file.\n",f);  exit(1); riff_err:  fprintf(stderr,"EOF parsing RIFF file %s.\n",f);  exit(1); yuv_err:  fprintf(stderr,"EOF parsing YUV4MPEG2 file %s.\n",f);  exit(1);}int spinner=0;char *spinascii="|/-\\";void spinnit(void){  spinner++;  if(spinner==4)spinner=0;  fprintf(stderr,"\r%c",spinascii[spinner]);}int fetch_and_process_audio(FILE *audio,ogg_page *audiopage,                            ogg_stream_state *vo,                            vorbis_dsp_state *vd,                            vorbis_block *vb,                            int audioflag){  ogg_packet op;  int i,j;  while(audio && !audioflag){    /* process any audio already buffered */    spinnit();    if(ogg_stream_pageout(vo,audiopage)>0) return 1;    if(ogg_stream_eos(vo))return 0;    {      /* read and process more audio */      signed char readbuffer[4096];      int toread=4096/2/audio_ch;      int bytesread=fread(readbuffer,1,toread*2*audio_ch,audio);      int sampread=bytesread/2/audio_ch;      float **vorbis_buffer;      int count=0;      if(bytesread<=0){        /* end of file.  this can be done implicitly, but it's           easier to see here in non-clever fashion.  Tell the           library we're at end of stream so that it can handle the           last frame and mark end of stream in the output properly */        vorbis_analysis_wrote(vd,0);      }else{        vorbis_buffer=vorbis_analysis_buffer(vd,sampread);        /* uninterleave samples */        for(i=0;i<sampread;i++){          for(j=0;j<audio_ch;j++){            vorbis_buffer[j][i]=((readbuffer[count+1]<<8)|                                 (0x00ff&(int)readbuffer[count]))/32768.f;            count+=2;          }        }                vorbis_analysis_wrote(vd,sampread);              }      while(vorbis_analysis_blockout(vd,vb)==1){                /* analysis, assume we want to use bitrate management */        vorbis_analysis(vb,NULL);        vorbis_bitrate_addblock(vb);                /* weld packets into the bitstream */        while(vorbis_bitrate_flushpacket(vd,&op))          ogg_stream_packetin(vo,&op);              }    }  }  return audioflag;}int fetch_and_process_video(FILE *video,ogg_page *videopage,                            ogg_stream_state *to,                            theora_state *td,                            int videoflag){  /* You'll go to Hell for using static variables */  static int          state=-1;  static unsigned char *yuvframe[2];  unsigned char        *line;  yuv_buffer          yuv;  ogg_packet          op;  int i, e;  if(state==-1){        /* initialize the double frame buffer */    yuvframe[0]=malloc(video_x*video_y*3/2);    yuvframe[1]=malloc(video_x*video_y*3/2);        /* clear initial frame as it may be larger than actual video data */        /* fill Y plane with 0x10 and UV planes with 0X80, for black data */    memset(yuvframe[0],0x10,video_x*video_y);    memset(yuvframe[0]+video_x*video_y,0x80,video_x*video_y/2);    memset(yuvframe[1],0x10,video_x*video_y);    memset(yuvframe[1]+video_x*video_y,0x80,video_x*video_y/2);    state=0;  }  /* is there a video page flushed?  If not, work until there is. */  while(!videoflag){    spinnit();    if(ogg_stream_pageout(to,videopage)>0) return 1;    if(ogg_stream_eos(to)) return 0;    {      /* read and process more video */      /* video strategy reads one frame ahead so we know when we're         at end of stream and can mark last video frame as such         (vorbis audio has to flush one frame past last video frame         due to overlap and thus doesn't need this extra work */      /* have two frame buffers full (if possible) before         proceeding.  after first pass and until eos, one will         always be full when we get here */      for(i=state;i<2;i++){        char c,frame[6];        int ret=fread(frame,1,6,video);        	/* match and skip the frame header */        if(ret<6)break;        if(memcmp(frame,"FRAME",5)){          fprintf(stderr,"Loss of framing in YUV input data\n");          exit(1);        }        if(frame[5]!='\n'){          int j;          for(j=0;j<79;j++)            if(fread(&c,1,1,video)&&c=='\n')break;          if(j==79){            fprintf(stderr,"Error parsing YUV frame header\n");            exit(1);          }        }        /* read the Y plane into our frame buffer with centering */        line=yuvframe[i]+video_x*frame_y_offset+frame_x_offset;        for(e=0;e<frame_y;e++){

⌨️ 快捷键说明

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