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