comparison apiexample.c @ 1106:1e39f273ecd6 libavcodec

per file doxy
author michaelni
date Thu, 06 Mar 2003 11:32:04 +0000
parents b32afefe7d33
children e4762efc3617
comparison
equal deleted inserted replaced
1105:b773f9d23236 1106:1e39f273ecd6
1 /* avcodec API use example. 1 /**
2 * @file apiexample.c
3 * avcodec API use example.
2 * 4 *
3 * Note that this library only handles codecs (mpeg, mpeg4, etc...), 5 * Note that this library only handles codecs (mpeg, mpeg4, etc...),
4 * not file formats (avi, vob, etc...). See library 'libav' for the 6 * not file formats (avi, vob, etc...). See library 'libav' for the
5 * format handling 7 * format handling
6 */ 8 */
9
7 #include <stdlib.h> 10 #include <stdlib.h>
8 #include <stdio.h> 11 #include <stdio.h>
9 #include <string.h> 12 #include <string.h>
10 #include <math.h> 13 #include <math.h>
11 14