annotate libmpcodecs/ve_lavc.c @ 7152:5d8f64646cb5

dct selection support
author michael
date Fri, 30 Aug 2002 00:38:42 +0000
parents 1e47c2e7aa8e
children a894e99c1e51
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
1 #include <stdio.h>
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
2 #include <stdlib.h>
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
3 #include <string.h>
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
4
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
5 #include "../config.h"
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
6
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
7 #ifdef USE_LIBAVCODEC
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
8
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
9 #include "../mp_msg.h"
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
10 #include "../help_mp.h"
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
11
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
12 #include "codec-cfg.h"
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
13 #include "stream.h"
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
14 #include "demuxer.h"
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
15 #include "stheader.h"
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
16
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
17 #include "aviwrite.h"
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
18
5607
1972c3475d93 mp_image.h and img_format.h moved to libmpcodecs
arpi
parents: 5565
diff changeset
19 #include "img_format.h"
1972c3475d93 mp_image.h and img_format.h moved to libmpcodecs
arpi
parents: 5565
diff changeset
20 #include "mp_image.h"
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
21 #include "vf.h"
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
22
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
23 #ifdef HAVE_DIVX4ENCORE
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
24 #include "divx4_vbr.h"
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
25 #endif
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
26
7090
43d7b60bd7f4 fixing compilation without divx4 patch by (Rmi Guyomarch <rguyom at pobox dot com>)
michael
parents: 7089
diff changeset
27 extern char* passtmpfile;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
28 extern int pass;
7127
1e47c2e7aa8e mostly compiler warning fixes, some small bugfix
arpi
parents: 7090
diff changeset
29 extern void mencoder_write_chunk(aviwrite_stream_t *s,int len,unsigned int flags);
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
30
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
31 //===========================================================================//
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
32
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
33 #ifdef USE_LIBAVCODEC_SO
7004
8eff71f38685 dynamic libavcodec.so support updated by
arpi
parents: 6944
diff changeset
34 #include <ffmpeg/avcodec.h>
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
35 #else
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
36 #include "libavcodec/avcodec.h"
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
37 #endif
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
38
5778
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
39 #if LIBAVCODEC_BUILD < 4601
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
40 #error your version of libavcodec is too old, get a newer one, and dont send a bugreport, THIS IS NO BUG
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
41 #endif
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
42
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
43 #if LIBAVCODEC_BUILD < 4620
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
44 #warning your version of libavcodec is old, u might want to get a newer one
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
45 #endif
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
46
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
47 extern int avcodec_inited;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
48
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
49 /* video options */
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
50 static char *lavc_param_vcodec = NULL;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
51 static int lavc_param_vbitrate = -1;
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
52 static int lavc_param_vrate_tolerance = 1000*8;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
53 static int lavc_param_vhq = 0; /* default is realtime encoding */
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
54 static int lavc_param_v4mv = 0;
5556
4016b44a1230 vme default changed 3->4
arpi
parents: 5551
diff changeset
55 static int lavc_param_vme = 4;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
56 static int lavc_param_vqscale = 0;
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
57 static int lavc_param_vqmin = 2;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
58 static int lavc_param_vqmax = 31;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
59 static int lavc_param_vqdiff = 3;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
60 static float lavc_param_vqcompress = 0.5;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
61 static float lavc_param_vqblur = 0.5;
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
62 static float lavc_param_vb_qfactor = 1.25;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
63 static float lavc_param_vb_qoffset = 1.25;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
64 static float lavc_param_vi_qfactor = 0.8;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
65 static float lavc_param_vi_qoffset = 0.0;
5657
ee2efbf3dc9d Preliminary support for lavcs b-frame encoding, disabled by default.
atmos4
parents: 5646
diff changeset
66 static int lavc_param_vmax_b_frames = 0;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
67 static int lavc_param_keyint = -1;
5778
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
68 static int lavc_param_vpass = 0;
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
69 static int lavc_param_vrc_strategy = 2;
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
70 static int lavc_param_vb_strategy = 0;
6255
140e94c4c89b single coefficient elimination disabled by default
michael
parents: 6228
diff changeset
71 static int lavc_param_luma_elim_threshold = 0;
140e94c4c89b single coefficient elimination disabled by default
michael
parents: 6228
diff changeset
72 static int lavc_param_chroma_elim_threshold = 0;
6228
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
73 static int lavc_param_packet_size= 0;
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
74 static int lavc_param_strict= 0;
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
75 static int lavc_param_data_partitioning= 0;
6461
michael
parents: 6255
diff changeset
76 static int lavc_param_gray=0;
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
77 static float lavc_param_rc_qsquish=1.0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
78 static float lavc_param_rc_qmod_amp=0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
79 static int lavc_param_rc_qmod_freq=0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
80 static char *lavc_param_rc_override_string=NULL;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
81 static char *lavc_param_rc_eq="tex^qComp";
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
82 static int lavc_param_rc_buffer_size=0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
83 static float lavc_param_rc_buffer_aggressivity=1.0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
84 static int lavc_param_rc_max_rate=0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
85 static int lavc_param_rc_min_rate=0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
86 static float lavc_param_rc_initial_cplx=0;
6944
c72555c4bc63 mpeg4 mpeg quantizer encoding
michael
parents: 6673
diff changeset
87 static int lavc_param_mpeg_quant=0;
7152
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
88 static int lavc_param_fdct=0;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
89
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
90 #include "cfgparser.h"
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
91
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
92 #ifdef USE_LIBAVCODEC
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
93 struct config lavcopts_conf[]={
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
94 {"vcodec", &lavc_param_vcodec, CONF_TYPE_STRING, 0, 0, 0, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
95 {"vbitrate", &lavc_param_vbitrate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
96 {"vratetol", &lavc_param_vrate_tolerance, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
97 {"vhq", &lavc_param_vhq, CONF_TYPE_FLAG, 0, 0, 1, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
98 {"v4mv", &lavc_param_v4mv, CONF_TYPE_FLAG, 0, 0, 1, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
99 {"vme", &lavc_param_vme, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
100 {"vqscale", &lavc_param_vqscale, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
101 {"vqmin", &lavc_param_vqmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
102 {"vqmax", &lavc_param_vqmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
103 {"vqdiff", &lavc_param_vqdiff, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
104 {"vqcomp", &lavc_param_vqcompress, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
105 {"vqblur", &lavc_param_vqblur, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL},
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
106 {"vb_qfactor", &lavc_param_vb_qfactor, CONF_TYPE_FLOAT, CONF_RANGE, -31.0, 31.0, NULL},
5657
ee2efbf3dc9d Preliminary support for lavcs b-frame encoding, disabled by default.
atmos4
parents: 5646
diff changeset
107 {"vmax_b_frames", &lavc_param_vmax_b_frames, CONF_TYPE_INT, CONF_RANGE, 0, FF_MAX_B_FRAMES, NULL},
5778
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
108 {"vpass", &lavc_param_vpass, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
109 #if LIBAVCODEC_BUILD < 4620
5778
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
110 {"vrc_strategy", &lavc_param_vrc_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
111 #endif
5778
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
112 {"vb_strategy", &lavc_param_vb_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 1, NULL},
6228
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
113 #ifdef CODEC_FLAG_PART
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
114 {"vb_qoffset", &lavc_param_vb_qoffset, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL},
7039
2eae7ac0fa8b same behavior for luma & chroma single coeff elimination
michael
parents: 7038
diff changeset
115 {"vlelim", &lavc_param_luma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL},
7038
bfb03691fb4b skip blocks with small chroma dc support
michael
parents: 7004
diff changeset
116 {"vcelim", &lavc_param_chroma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL},
6228
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
117 {"vpsize", &lavc_param_packet_size, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL},
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
118 {"vstrict", &lavc_param_strict, CONF_TYPE_FLAG, 0, 0, 1, NULL},
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
119 {"vdpart", &lavc_param_data_partitioning, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL},
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
120 #endif
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
121 {"keyint", &lavc_param_keyint, CONF_TYPE_INT, 0, 0, 0, NULL},
6461
michael
parents: 6255
diff changeset
122 #if LIBAVCODEC_BUILD >= 4614
michael
parents: 6255
diff changeset
123 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL},
michael
parents: 6255
diff changeset
124 #endif
6944
c72555c4bc63 mpeg4 mpeg quantizer encoding
michael
parents: 6673
diff changeset
125 #if LIBAVCODEC_BUILD >= 4619
c72555c4bc63 mpeg4 mpeg quantizer encoding
michael
parents: 6673
diff changeset
126 {"mpeg_quant", &lavc_param_mpeg_quant, CONF_TYPE_FLAG, 0, 0, 1, NULL},
c72555c4bc63 mpeg4 mpeg quantizer encoding
michael
parents: 6673
diff changeset
127 #endif
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
128 #if LIBAVCODEC_BUILD >= 4620
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
129 {"vi_qfactor", &lavc_param_vi_qfactor, CONF_TYPE_FLOAT, CONF_RANGE, -31.0, 31.0, NULL},
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
130 {"vi_qoffset", &lavc_param_vi_qoffset, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL},
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
131 {"vqsquish", &lavc_param_rc_qsquish, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL},
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
132 {"vqmod_amp", &lavc_param_rc_qmod_amp, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL},
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
133 {"vqmod_freq", &lavc_param_rc_qmod_freq, CONF_TYPE_INT, 0, 0, 0, NULL},
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
134 {"vrc_eq", &lavc_param_rc_eq, CONF_TYPE_STRING, 0, 0, 0, NULL},
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
135 {"vrc_override", &lavc_param_rc_override_string, CONF_TYPE_STRING, 0, 0, 0, NULL},
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
136 {"vrc_maxrate", &lavc_param_rc_max_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL},
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
137 {"vrc_minrate", &lavc_param_rc_min_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL},
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
138 {"vrc_buf_size", &lavc_param_rc_min_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL},
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
139 {"vrc_buf_aggressivity", &lavc_param_rc_buffer_aggressivity, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL},
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
140 {"vrc_init_cplx", &lavc_param_rc_initial_cplx, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 9999999.0, NULL},
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
141 #endif
7152
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
142 #if LIBAVCODEC_BUILD >= 4621
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
143 {"vfdct", &lavc_param_fdct, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL},
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
144 #endif
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
145 {NULL, NULL, 0, 0, 0, 0, NULL}
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
146 };
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
147 #endif
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
148
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
149 struct vf_priv_s {
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
150 aviwrite_stream_t* mux;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
151 AVCodecContext context;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
152 AVCodec *codec;
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
153 FILE *stats_file;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
154 };
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
155
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
156 #define stats_file (vf->priv->stats_file)
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
157 #define mux_v (vf->priv->mux)
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
158 #define lavc_venc_context (vf->priv->context)
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
159
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
160 static int config(struct vf_instance_s* vf,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
161 int width, int height, int d_width, int d_height,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
162 unsigned int flags, unsigned int outfmt){
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
163 int size, i;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
164 void *p;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
165
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
166 mux_v->bih->biWidth=width;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
167 mux_v->bih->biHeight=height;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
168 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
169
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
170 memset(&lavc_venc_context, 0, sizeof(lavc_venc_context));
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
171
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
172 printf("videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n",
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
173 mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
174 (char *)&mux_v->bih->biCompression);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
175
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
176 lavc_venc_context.width = width;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
177 lavc_venc_context.height = height;
5677
a21cab74cde8 bitrate>16000 means bits not kbits - noticed by George Hawkins <george_hawkins@yahoo.com>
arpi
parents: 5657
diff changeset
178 if (lavc_param_vbitrate > 16000) /* != -1 */
a21cab74cde8 bitrate>16000 means bits not kbits - noticed by George Hawkins <george_hawkins@yahoo.com>
arpi
parents: 5657
diff changeset
179 lavc_venc_context.bit_rate = lavc_param_vbitrate;
a21cab74cde8 bitrate>16000 means bits not kbits - noticed by George Hawkins <george_hawkins@yahoo.com>
arpi
parents: 5657
diff changeset
180 else if (lavc_param_vbitrate >= 0) /* != -1 */
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
181 lavc_venc_context.bit_rate = lavc_param_vbitrate*1000;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
182 else
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
183 lavc_venc_context.bit_rate = 800000; /* default */
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
184 lavc_venc_context.bit_rate_tolerance= lavc_param_vrate_tolerance*1000;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
185 lavc_venc_context.frame_rate = (float)mux_v->h.dwRate/mux_v->h.dwScale * FRAME_RATE_BASE;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
186 lavc_venc_context.qmin= lavc_param_vqmin;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
187 lavc_venc_context.qmax= lavc_param_vqmax;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
188 lavc_venc_context.max_qdiff= lavc_param_vqdiff;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
189 lavc_venc_context.qcompress= lavc_param_vqcompress;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
190 lavc_venc_context.qblur= lavc_param_vqblur;
5657
ee2efbf3dc9d Preliminary support for lavcs b-frame encoding, disabled by default.
atmos4
parents: 5646
diff changeset
191 lavc_venc_context.max_b_frames= lavc_param_vmax_b_frames;
5778
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
192 lavc_venc_context.b_quant_factor= lavc_param_vb_qfactor;
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
193 lavc_venc_context.rc_strategy= lavc_param_vrc_strategy;
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
194 lavc_venc_context.b_frame_strategy= lavc_param_vb_strategy;
6228
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
195
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
196 #ifdef CODEC_FLAG_PART
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
197 lavc_venc_context.b_quant_offset= lavc_param_vb_qoffset;
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
198 lavc_venc_context.luma_elim_threshold= lavc_param_luma_elim_threshold;
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
199 lavc_venc_context.chroma_elim_threshold= lavc_param_chroma_elim_threshold;
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
200 lavc_venc_context.rtp_payload_size= lavc_param_packet_size;
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
201 if(lavc_param_packet_size )lavc_venc_context.rtp_mode=1;
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
202 lavc_venc_context.strict_std_compliance= lavc_param_strict;
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
203 #endif
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
204 #if LIBAVCODEC_BUILD >= 4620
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
205 lavc_venc_context.i_quant_factor= lavc_param_vi_qfactor;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
206 lavc_venc_context.i_quant_offset= lavc_param_vi_qoffset;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
207 lavc_venc_context.rc_qsquish= lavc_param_rc_qsquish;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
208 lavc_venc_context.rc_qmod_amp= lavc_param_rc_qmod_amp;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
209 lavc_venc_context.rc_qmod_freq= lavc_param_rc_qmod_freq;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
210 lavc_venc_context.rc_eq= lavc_param_rc_eq;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
211 lavc_venc_context.rc_max_rate= lavc_param_rc_max_rate*1000;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
212 lavc_venc_context.rc_min_rate= lavc_param_rc_min_rate*1000;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
213 lavc_venc_context.rc_buffer_size= lavc_param_rc_buffer_size*1000;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
214 lavc_venc_context.rc_buffer_aggressivity= lavc_param_rc_buffer_aggressivity;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
215 lavc_venc_context.rc_initial_cplx= lavc_param_rc_initial_cplx;
7152
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
216
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
217 p= lavc_param_rc_override_string;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
218 for(i=0; p; i++){
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
219 int start, end, q;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
220 int e=sscanf(p, "%d,%d,%d", &start, &end, &q);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
221 if(e!=3){
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
222 mp_msg(MSGT_MENCODER,MSGL_ERR,"error parsing vrc_q\n");
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
223 return 0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
224 }
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
225 lavc_venc_context.rc_override=
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
226 realloc(lavc_venc_context.rc_override, sizeof(RcOverride)*(i+1));
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
227 lavc_venc_context.rc_override[i].start_frame= start;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
228 lavc_venc_context.rc_override[i].end_frame = end;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
229 if(q>0){
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
230 lavc_venc_context.rc_override[i].qscale= q;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
231 lavc_venc_context.rc_override[i].quality_factor= 1.0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
232 }
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
233 else{
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
234 lavc_venc_context.rc_override[i].qscale= 0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
235 lavc_venc_context.rc_override[i].quality_factor= -q/100.0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
236 }
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
237 p= strchr(p, '/');
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
238 if(p) p++;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
239 }
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
240 lavc_venc_context.rc_override_count=i;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
241 #endif
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
242
6944
c72555c4bc63 mpeg4 mpeg quantizer encoding
michael
parents: 6673
diff changeset
243 #if LIBAVCODEC_BUILD >= 4619
c72555c4bc63 mpeg4 mpeg quantizer encoding
michael
parents: 6673
diff changeset
244 lavc_venc_context.mpeg_quant=lavc_param_mpeg_quant;
c72555c4bc63 mpeg4 mpeg quantizer encoding
michael
parents: 6673
diff changeset
245 #endif
7152
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
246
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
247 #if LIBAVCODEC_BUILD >= 4621
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
248 lavc_venc_context.dct_algo= lavc_param_fdct;
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
249 #endif
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
250
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
251 /* keyframe interval */
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
252 if (lavc_param_keyint >= 0) /* != -1 */
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
253 lavc_venc_context.gop_size = lavc_param_keyint;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
254 else
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
255 lavc_venc_context.gop_size = 250; /* default */
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
256
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
257 if (lavc_param_vhq)
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
258 {
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
259 printf("High quality encoding selected (non real time)!\n");
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
260 lavc_venc_context.flags = CODEC_FLAG_HQ;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
261 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
262 else
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
263 lavc_venc_context.flags = 0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
264
5781
62e9e0c0bd6a hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents: 5778
diff changeset
265 /* 4mv is currently buggy with B frames */
62e9e0c0bd6a hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents: 5778
diff changeset
266 if (lavc_param_vmax_b_frames > 0 && lavc_param_v4mv) {
62e9e0c0bd6a hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents: 5778
diff changeset
267 printf("4MV with B-Frames not yet supported -> 4MV disabled\n");
62e9e0c0bd6a hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents: 5778
diff changeset
268 lavc_param_v4mv = 0;
62e9e0c0bd6a hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents: 5778
diff changeset
269 }
62e9e0c0bd6a hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents: 5778
diff changeset
270
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
271 lavc_venc_context.flags|= lavc_param_v4mv ? CODEC_FLAG_4MV : 0;
6228
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
272 #ifdef CODEC_FLAG_PART
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
273 lavc_venc_context.flags|= lavc_param_data_partitioning;
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
274 #endif
6461
michael
parents: 6255
diff changeset
275 #if LIBAVCODEC_BUILD >= 4614
michael
parents: 6255
diff changeset
276 if(lavc_param_gray) lavc_venc_context.flags|= CODEC_FLAG_GRAY;
michael
parents: 6255
diff changeset
277 #endif
michael
parents: 6255
diff changeset
278
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
279
5778
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
280 /* lavc internal 2pass bitrate control */
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
281 #ifdef HAVE_DIVX4ENCORE
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
282 switch(lavc_param_vpass){
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
283 #else
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
284 switch(lavc_param_vpass?lavc_param_vpass:pass){
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
285 #endif
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
286 case 1:
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
287 lavc_venc_context.flags|= CODEC_FLAG_PASS1;
7089
michael
parents: 7088
diff changeset
288 #if LIBAVCODEC_BUILD >= 4620
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
289 stats_file= fopen(passtmpfile, "w");
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
290 if(stats_file==NULL){
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
291 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
292 return 0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
293 }
7089
michael
parents: 7088
diff changeset
294 #endif
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
295 break;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
296 case 2:
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
297 lavc_venc_context.flags|= CODEC_FLAG_PASS2;
7089
michael
parents: 7088
diff changeset
298 #if LIBAVCODEC_BUILD >= 4620
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
299 stats_file= fopen(passtmpfile, "r");
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
300 if(stats_file==NULL){
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
301 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
302 return 0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
303 }
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
304 fseek(stats_file, 0, SEEK_END);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
305 size= ftell(stats_file);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
306 fseek(stats_file, 0, SEEK_SET);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
307
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
308 lavc_venc_context.stats_in= malloc(size + 1);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
309 lavc_venc_context.stats_in[size]=0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
310
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
311 if(fread(lavc_venc_context.stats_in, size, 1, stats_file)<1){
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
312 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: reading from filename=%s\n", passtmpfile);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
313 return 0;
7089
michael
parents: 7088
diff changeset
314 }
michael
parents: 7088
diff changeset
315 #endif
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
316 break;
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
317 }
5778
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
318
5624
d9af91d38449 workaround Juanjo's stupid vme change
arpi
parents: 5607
diff changeset
319 #ifdef ME_ZERO
d9af91d38449 workaround Juanjo's stupid vme change
arpi
parents: 5607
diff changeset
320 // workaround Juanjo's stupid incompatible change:
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
321 motion_estimation_method = lavc_param_vme;
5624
d9af91d38449 workaround Juanjo's stupid vme change
arpi
parents: 5607
diff changeset
322 #else
d9af91d38449 workaround Juanjo's stupid vme change
arpi
parents: 5607
diff changeset
323 lavc_venc_context.me_method = ME_ZERO+lavc_param_vme;
d9af91d38449 workaround Juanjo's stupid vme change
arpi
parents: 5607
diff changeset
324 #endif
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
325
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
326 /* fixed qscale :p */
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
327 if (lavc_param_vqscale)
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
328 {
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
329 printf("Using constant qscale = %d (VBR)\n", lavc_param_vqscale);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
330 lavc_venc_context.flags |= CODEC_FLAG_QSCALE;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
331 lavc_venc_context.quality = lavc_param_vqscale;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
332 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
333
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
334 #ifdef HAVE_DIVX4ENCORE
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
335 switch(pass){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
336 case 1:
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
337 if (VbrControl_init_2pass_vbr_analysis(passtmpfile, 5) == -1){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
338 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
339 pass=0;
5781
62e9e0c0bd6a hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents: 5778
diff changeset
340 }
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
341 break;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
342 case 2:
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
343 if (VbrControl_init_2pass_vbr_encoding(passtmpfile,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
344 lavc_venc_context.bit_rate,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
345 (float)mux_v->h.dwRate/mux_v->h.dwScale,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
346 100, /* crispness */
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
347 5) == -1){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
348 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
349 pass=0;
5632
93c9df5225a7 2-pass qscale fixed
arpi
parents: 5624
diff changeset
350 } else
93c9df5225a7 2-pass qscale fixed
arpi
parents: 5624
diff changeset
351 lavc_venc_context.flags|=CODEC_FLAG_QSCALE|CODEC_FLAG_TYPE; // VBR
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
352 break;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
353 }
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
354 #endif
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
355
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
356 if (avcodec_open(&lavc_venc_context, vf->priv->codec) != 0) {
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
357 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantOpenCodec);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
358 return 0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
359 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
360
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
361 if (lavc_venc_context.codec->encode == NULL) {
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
362 mp_msg(MSGT_MENCODER,MSGL_ERR,"avcodec init failed (ctx->codec->encode == NULL)!\n");
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
363 return 0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
364 }
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
365
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
366 #if LIBAVCODEC_BUILD >= 4620
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
367 /* free second pass buffer, its not needed anymore */
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
368 if(lavc_venc_context.stats_in) free(lavc_venc_context.stats_in);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
369 lavc_venc_context.stats_in= NULL;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
370 #endif
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
371
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
372 return 1;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
373 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
374
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
375 static int control(struct vf_instance_s* vf, int request, void* data){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
376
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
377 return CONTROL_UNKNOWN;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
378 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
379
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
380 static int query_format(struct vf_instance_s* vf, unsigned int fmt){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
381 switch(fmt){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
382 case IMGFMT_YV12:
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
383 case IMGFMT_IYUV:
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
384 case IMGFMT_I420:
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5556
diff changeset
385 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
386 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
387 return 0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
388 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
389
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
390 static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
391 int out_size;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
392 AVPicture lavc_venc_picture;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
393
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
394 lavc_venc_picture.data[0]=mpi->planes[0];
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
395 lavc_venc_picture.data[1]=mpi->planes[1];
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
396 lavc_venc_picture.data[2]=mpi->planes[2];
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
397 lavc_venc_picture.linesize[0]=mpi->stride[0];
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
398 lavc_venc_picture.linesize[1]=mpi->stride[1];
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
399 lavc_venc_picture.linesize[2]=mpi->stride[2];
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
400
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
401 #ifdef HAVE_DIVX4ENCORE
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
402 if(pass==2){ // handle 2-pass:
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
403 lavc_venc_context.flags|=CODEC_FLAG_QSCALE; // enable VBR
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
404 lavc_venc_context.quality=VbrControl_get_quant();
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
405 lavc_venc_context.key_frame=VbrControl_get_intra();
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
406 lavc_venc_context.gop_size=0x3fffffff;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
407 out_size = avcodec_encode_video(&lavc_venc_context, mux_v->buffer, mux_v->buffer_size,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
408 &lavc_venc_picture);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
409 VbrControl_update_2pass_vbr_encoding(lavc_venc_context.mv_bits,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
410 lavc_venc_context.i_tex_bits+lavc_venc_context.p_tex_bits,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
411 8*out_size);
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
412 } else
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
413 #endif
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
414 {
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
415 out_size = avcodec_encode_video(&lavc_venc_context, mux_v->buffer, mux_v->buffer_size,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
416 &lavc_venc_picture);
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
417 #ifdef HAVE_DIVX4ENCORE
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
418 if(pass==1){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
419 VbrControl_update_2pass_vbr_analysis(lavc_venc_context.key_frame,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
420 lavc_venc_context.mv_bits,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
421 lavc_venc_context.i_tex_bits+lavc_venc_context.p_tex_bits,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
422 8*out_size, lavc_venc_context.quality);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
423 }
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
424 #endif
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
425 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
426
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
427 mencoder_write_chunk(mux_v,out_size,lavc_venc_context.key_frame?0x10:0);
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
428
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
429 #if LIBAVCODEC_BUILD >= 4620
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
430 /* store stats if there are any */
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
431 if(lavc_venc_context.stats_out && stats_file)
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
432 fprintf(stats_file, "%s", lavc_venc_context.stats_out);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
433 #endif
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
434 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
435
5551
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
436 static void uninit(struct vf_instance_s* vf){
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
437 avcodec_close(&lavc_venc_context);
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
438
7089
michael
parents: 7088
diff changeset
439 #if LIBAVCODEC_BUILD >= 4620
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
440 if(stats_file) fclose(stats_file);
7089
michael
parents: 7088
diff changeset
441
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
442 /* free rc_override */
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
443 if(lavc_venc_context.rc_override) free(lavc_venc_context.rc_override);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
444 lavc_venc_context.rc_override= NULL;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
445 #endif
5551
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
446 }
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
447
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
448 //===========================================================================//
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
449
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
450 static int vf_open(vf_instance_t *vf, char* args){
5551
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
451 vf->uninit=uninit;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
452 vf->config=config;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
453 vf->control=control;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
454 vf->query_format=query_format;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
455 vf->put_image=put_image;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
456 vf->priv=malloc(sizeof(struct vf_priv_s));
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
457 memset(vf->priv,0,sizeof(struct vf_priv_s));
7127
1e47c2e7aa8e mostly compiler warning fixes, some small bugfix
arpi
parents: 7090
diff changeset
458 vf->priv->mux=(aviwrite_stream_t*)args;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
459
5977
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
460 /* XXX: hack: some of the MJPEG decoder DLL's needs exported huffman
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
461 table, so we define a zero-table, also lavc mjpeg encoder is putting
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
462 huffman tables into the stream, so no problem */
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
463 if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "mjpeg"))
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
464 {
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
465 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+28);
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
466 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+28);
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
467 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+28;
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
468 }
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
469 else
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
470 {
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
471 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER));
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
472 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER));
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
473 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER);
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
474 }
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
475 mux_v->bih->biWidth=0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
476 mux_v->bih->biHeight=0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
477 mux_v->bih->biPlanes=1;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
478 mux_v->bih->biBitCount=24;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
479 if (!lavc_param_vcodec)
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
480 {
5977
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
481 printf("No libavcodec codec specified! It's required!\n");
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
482 return 0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
483 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
484
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
485 if (!strcasecmp(lavc_param_vcodec, "mpeg1") || !strcasecmp(lavc_param_vcodec, "mpeg1video"))
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
486 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '1');
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
487 else if (!strcasecmp(lavc_param_vcodec, "h263") || !strcasecmp(lavc_param_vcodec, "h263p"))
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
488 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '3');
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
489 else if (!strcasecmp(lavc_param_vcodec, "rv10"))
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
490 mux_v->bih->biCompression = mmioFOURCC('R', 'V', '1', '0');
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
491 else if (!strcasecmp(lavc_param_vcodec, "mjpeg"))
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
492 mux_v->bih->biCompression = mmioFOURCC('M', 'J', 'P', 'G');
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
493 else if (!strcasecmp(lavc_param_vcodec, "mpeg4"))
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
494 mux_v->bih->biCompression = mmioFOURCC('D', 'I', 'V', 'X');
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
495 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4"))
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
496 mux_v->bih->biCompression = mmioFOURCC('d', 'i', 'v', '3');
5972
80c25f6a535f msmpeg4v2 -> MP42 mapping, requested by Gabucino
alex
parents: 5781
diff changeset
497 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4v2"))
80c25f6a535f msmpeg4v2 -> MP42 mapping, requested by Gabucino
alex
parents: 5781
diff changeset
498 mux_v->bih->biCompression = mmioFOURCC('M', 'P', '4', '2');
6461
michael
parents: 6255
diff changeset
499 else if (!strcasecmp(lavc_param_vcodec, "wmv1"))
michael
parents: 6255
diff changeset
500 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '1');
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
501 else
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
502 mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0],
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
503 lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
504
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
505 if (!avcodec_inited){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
506 avcodec_init();
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
507 avcodec_register_all();
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
508 avcodec_inited=1;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
509 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
510
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
511 vf->priv->codec = (AVCodec *)avcodec_find_encoder_by_name(lavc_param_vcodec);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
512 if (!vf->priv->codec) {
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
513 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_MissingLAVCcodec, lavc_param_vcodec);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
514 return 0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
515 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
516
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
517 return 1;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
518 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
519
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
520 vf_info_t ve_info_lavc = {
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
521 "libavcodec encoder",
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
522 "lavc",
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
523 "A'rpi, Alex, Michael",
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
524 "for internal use by mencoder",
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
525 vf_open
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
526 };
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
527
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
528 //===========================================================================//
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
529 #endif