comparison x264.c @ 2784:cdf74a048614 libavcodec

patch from http://www.freebsd.org/cgi/cvsweb.cgi/ports/multimedia/ffmpeg-devel/files/patch-libavcodec::x264.c (math.h needed for log2() at least)
author michael
date Sun, 10 Jul 2005 00:22:13 +0000
parents 5bdc60634470
children dd5a1abbf9a3
comparison
equal deleted inserted replaced
2783:7a411f408d74 2784:cdf74a048614
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */ 18 */
19 19
20 #include "avcodec.h" 20 #include "avcodec.h"
21 #include <x264.h> 21 #include <x264.h>
22 #include <math.h>
22 23
23 typedef struct X264Context { 24 typedef struct X264Context {
24 x264_param_t params; 25 x264_param_t params;
25 x264_t *enc; 26 x264_t *enc;
26 x264_picture_t pic; 27 x264_picture_t pic;