It's all coming back together slowly. Incremental update.
[platform/upstream/libvorbis.git] / examples / encoder_example.c
1 /********************************************************************
2  *                                                                  *
3  * THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE.  *
4  * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
5  * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE.    *
6  * PLEASE READ THESE TERMS DISTRIBUTING.                            *
7  *                                                                  *
8  * THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-2000             *
9  * by Monty <monty@xiph.org> and The XIPHOPHORUS Company            *
10  * http://www.xiph.org/                                             *
11  *                                                                  *
12  ********************************************************************
13
14  function: simple example encoder
15  last mod: $Id: encoder_example.c,v 1.4 2000/01/22 13:28:09 xiphmont Exp $
16
17  ********************************************************************/
18
19 /* takes a stereo 16bit 44.1kHz WAV file from stdin and encodes it into
20    a Vorbis bitstream */
21
22 /* Note that this is POSIX, not ANSI, code */
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <time.h>
27 #include <math.h>
28 #include "vorbis/codec.h"
29
30 #define READ 1024
31 signed char readbuffer[READ*4+44]; /* out of the data segment, not the stack */
32
33 int main(){
34   ogg_stream_state os; /* take physical pages, weld into a logical
35                           stream of packets */
36   ogg_page         og; /* one Ogg bitstream page.  Vorbis packets are inside */
37   ogg_packet       op; /* one raw packet of data for decode */
38   
39   vorbis_info      vi; /* struct that stores all the static vorbis bitstream
40                           settings */
41   vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */
42   vorbis_block     vb; /* local working space for packet->PCM decode */
43
44   int eos=0;
45
46   /* we cheat on the WAV header; we just bypass 44 bytes and never
47      verify that it matches 16bit/stereo/44.1kHz.  This is just an
48      example, after all. */
49
50   fread(readbuffer,1,44,stdin);
51
52   /********** Encode setup ************/
53
54   /* choose an encoding mode */
55   /* (mode 0: 44kHz stereo uncoupled, roughly 128kbps VBR) */
56   vorbis_info_modeset(&vi,0); 
57
58   /* add a comment */
59   vorbis_info_addcomment(&vi,"Track encoded by encoder_example.c");
60
61   /* set up the analysis state and auxiliary encoding storage */
62   vorbis_analysis_init(&vd,&vi);
63   vorbis_block_init(&vd,&vb);
64   
65   /* set up our packet->stream encoder */
66   /* pick a random serial number; that way we can more likely build
67      chained streams just by concatenation */
68   srandom(time(NULL));
69   ogg_stream_init(&os,random());
70
71   /* Vorbis streams begin with three headers; the initial header (with
72      most of the codec setup parameters) which is mandated by the Ogg
73      bitstream spec.  The second header holds any comment fields.  The
74      third header holds the bitstream codebook.  We merely need to
75      make the headers, then pass them to libvorbis one at a time;
76      libvorbis handles the additional Ogg bitstream constraints */
77
78   {
79     ogg_packet header;
80     ogg_packet header_comm;
81     ogg_packet header_code;
82
83     vorbis_info_headerout(&vi,&header,&header_comm,&header_code);
84     ogg_stream_packetin(&os,&header); /* automatically placed in its own
85                                          page */
86     ogg_stream_packetin(&os,&header_comm);
87     ogg_stream_packetin(&os,&header_code);
88
89     /* no need to write out here.  We'll get to that in the main loop */
90   }
91   
92   while(!eos){
93     long i;
94     long bytes=fread(readbuffer,1,READ*4,stdin); /* stereo hardwired here */
95
96     if(bytes==0){
97       /* end of file.  this can be done implicitly in the mainline,
98          but it's easier to see here in non-clever fashion.
99          Tell the library we're at end of stream so that it can handle
100          the last frame and mark end of stream in the output properly */
101       vorbis_analysis_wrote(&vd,0);
102
103     }else{
104       /* data to encode */
105
106       /* expose the buffer to submit data */
107       double **buffer=vorbis_analysis_buffer(&vd,READ);
108       
109       /* uninterleave samples */
110       for(i=0;i<bytes/4;i++){
111         buffer[0][i]=((readbuffer[i*4+1]<<8)|
112                       (0x00ff&(int)readbuffer[i*4]))/32768.;
113         buffer[1][i]=((readbuffer[i*4+3]<<8)|
114                       (0x00ff&(int)readbuffer[i*4+2]))/32768.;
115       }
116     
117       /* tell the library how much we actually submitted */
118       vorbis_analysis_wrote(&vd,i);
119     }
120
121     /* vorbis does some data preanalysis, then divvies up blocks for
122        more involved (potentially parallel) processing.  Get a single
123        block for encoding now */
124     while(vorbis_analysis_blockout(&vd,&vb)==1){
125
126       /* analysis */
127       vorbis_analysis(&vb,&op);
128
129       /* weld the packet into the bitstream */
130       ogg_stream_packetin(&os,&op);
131
132       /* write out pages (if any) */
133       while(!eos){
134         int result=ogg_stream_pageout(&os,&og);
135         if(result==0)break;
136         fwrite(og.header,1,og.header_len,stdout);
137         fwrite(og.body,1,og.body_len,stdout);
138
139         /* this could be set above, but for illustrative purposes, I do
140            it here (to show that vorbis does know where the stream ends) */
141         
142         if(ogg_page_eos(&og))eos=1;
143
144       }
145     }
146   }
147
148   /* clean up and exit.  vorbis_info_clear() must be called last */
149   
150   ogg_stream_clear(&os);
151   vorbis_block_clear(&vb);
152   vorbis_dsp_clear(&vd);
153   vorbis_info_clear(&vi);
154   
155   /* ogg_page and ogg_packet structs always point to storage in
156      libvorbis.  They're never freed or manipulated directly */
157   
158   fprintf(stderr,"Done.\n");
159   return(0);
160 }
161