comparison libmpcodecs/ve_x264.c @ 32064:a735105a66b6

Move all MEncoder-related extern variable declarations to mencoder.h.
author diego
date Sat, 11 Sep 2010 11:47:07 +0000
parents c42345605c7a
children 0f9662ec84d0
comparison
equal deleted inserted replaced
32063:bfd3e0d9ab9d 32064:a735105a66b6
30 #include <string.h> 30 #include <string.h>
31 #include <errno.h> 31 #include <errno.h>
32 32
33 #include "config.h" 33 #include "config.h"
34 #include "mp_msg.h" 34 #include "mp_msg.h"
35 35 #include "mencoder.h"
36 #include "m_option.h" 36 #include "m_option.h"
37 #include "codec-cfg.h" 37 #include "codec-cfg.h"
38 #include "stream/stream.h" 38 #include "stream/stream.h"
39 #include "libmpdemux/demuxer.h" 39 #include "libmpdemux/demuxer.h"
40 #include "libmpdemux/stheader.h" 40 #include "libmpdemux/stheader.h"
53 muxer_stream_t *mux; 53 muxer_stream_t *mux;
54 x264_t * x264; 54 x264_t * x264;
55 x264_picture_t pic; 55 x264_picture_t pic;
56 } h264_module_t; 56 } h264_module_t;
57 57
58 extern char* passtmpfile;
59 static x264_param_t param; 58 static x264_param_t param;
60 static int parse_error = 0; 59 static int parse_error = 0;
61 60
62 static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts); 61 static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts);
63 static int encode_frame(struct vf_instance *vf, x264_picture_t *pic_in); 62 static int encode_frame(struct vf_instance *vf, x264_picture_t *pic_in);