annotate libmpcodecs/ve_lavc.c @ 7495:12b2c735ad07

removed -dapsync (obsolete code)
author arpi
date Mon, 23 Sep 2002 22:12:29 +0000
parents ca3aa049c9d4
children 3d35a56799fc
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
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
43 #if LIBAVCODEC_BUILD < 4624
7088
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;
7389
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
89 #if LIBAVCODEC_BUILD >= 4623
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
90 static float lavc_param_aspect=0.0;
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
91 #endif
7490
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
92 static float lavc_param_lumi_masking= 0.0;
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
93 static float lavc_param_temporal_cplx_masking= 0.0;
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
94 static float lavc_param_spatial_cplx_masking= 0.0;
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
95 static float lavc_param_p_masking= 0.0;
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
96 static int lavc_param_normalize_aqp= 0;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
97
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
98 #include "cfgparser.h"
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
99
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
100 #ifdef USE_LIBAVCODEC
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
101 struct config lavcopts_conf[]={
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
102 {"vcodec", &lavc_param_vcodec, CONF_TYPE_STRING, 0, 0, 0, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
103 {"vbitrate", &lavc_param_vbitrate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
104 {"vratetol", &lavc_param_vrate_tolerance, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
105 {"vhq", &lavc_param_vhq, CONF_TYPE_FLAG, 0, 0, 1, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
106 {"v4mv", &lavc_param_v4mv, CONF_TYPE_FLAG, 0, 0, 1, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
107 {"vme", &lavc_param_vme, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
108 {"vqscale", &lavc_param_vqscale, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
109 {"vqmin", &lavc_param_vqmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
110 {"vqmax", &lavc_param_vqmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
111 {"vqdiff", &lavc_param_vqdiff, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
112 {"vqcomp", &lavc_param_vqcompress, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL},
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
113 {"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
114 {"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
115 {"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
116 {"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
117 #if LIBAVCODEC_BUILD < 4620
5778
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
118 {"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
119 #endif
5778
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
120 {"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
121 #ifdef CODEC_FLAG_PART
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
122 {"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
123 {"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
124 {"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
125 {"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
126 {"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
127 {"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
128 #endif
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
129 {"keyint", &lavc_param_keyint, CONF_TYPE_INT, 0, 0, 0, NULL},
6461
michael
parents: 6255
diff changeset
130 #if LIBAVCODEC_BUILD >= 4614
michael
parents: 6255
diff changeset
131 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL},
michael
parents: 6255
diff changeset
132 #endif
6944
c72555c4bc63 mpeg4 mpeg quantizer encoding
michael
parents: 6673
diff changeset
133 #if LIBAVCODEC_BUILD >= 4619
c72555c4bc63 mpeg4 mpeg quantizer encoding
michael
parents: 6673
diff changeset
134 {"mpeg_quant", &lavc_param_mpeg_quant, CONF_TYPE_FLAG, 0, 0, 1, NULL},
c72555c4bc63 mpeg4 mpeg quantizer encoding
michael
parents: 6673
diff changeset
135 #endif
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
136 #if LIBAVCODEC_BUILD >= 4620
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
137 {"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
138 {"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
139 {"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
140 {"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
141 {"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
142 {"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
143 {"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
144 {"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
145 {"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
146 {"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
147 {"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
148 {"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
149 #endif
7152
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
150 #if LIBAVCODEC_BUILD >= 4621
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
151 {"vfdct", &lavc_param_fdct, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL},
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
152 #endif
7389
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
153 #if LIBAVCODEC_BUILD >= 4623
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
154 {"aspect", &lavc_param_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 3.0, NULL},
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
155 #endif
7490
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
156 #if LIBAVCODEC_BUILD >= 4625
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
157 {"lumi_mask", &lavc_param_lumi_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL},
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
158 {"tcplx_mask", &lavc_param_temporal_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL},
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
159 {"scplx_mask", &lavc_param_spatial_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL},
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
160 {"p_mask", &lavc_param_p_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL},
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
161 {"naq", &lavc_param_normalize_aqp, CONF_TYPE_FLAG, 0, 0, 1, NULL},
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
162 #endif
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
163 {NULL, NULL, 0, 0, 0, 0, NULL}
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
164 };
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
165 #endif
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
166
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
167 struct vf_priv_s {
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
168 aviwrite_stream_t* mux;
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
169 AVCodecContext *context;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
170 AVCodec *codec;
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
171 FILE *stats_file;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
172 };
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
173
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
174 #define stats_file (vf->priv->stats_file)
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
175 #define mux_v (vf->priv->mux)
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
176 #define lavc_venc_context (vf->priv->context)
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
177
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
178 static int config(struct vf_instance_s* vf,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
179 int width, int height, int d_width, int d_height,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
180 unsigned int flags, unsigned int outfmt){
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
181 int size, i;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
182 void *p;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
183
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
184 mux_v->bih->biWidth=width;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
185 mux_v->bih->biHeight=height;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
186 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
187
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
188 printf("videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n",
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
189 mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
190 (char *)&mux_v->bih->biCompression);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
191
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
192 lavc_venc_context->width = width;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
193 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
194 if (lavc_param_vbitrate > 16000) /* != -1 */
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
195 lavc_venc_context->bit_rate = lavc_param_vbitrate;
5677
a21cab74cde8 bitrate>16000 means bits not kbits - noticed by George Hawkins <george_hawkins@yahoo.com>
arpi
parents: 5657
diff changeset
196 else if (lavc_param_vbitrate >= 0) /* != -1 */
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
197 lavc_venc_context->bit_rate = lavc_param_vbitrate*1000;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
198 else
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
199 lavc_venc_context->bit_rate = 800000; /* default */
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
200 lavc_venc_context->bit_rate_tolerance= lavc_param_vrate_tolerance*1000;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
201 lavc_venc_context->frame_rate = (float)mux_v->h.dwRate/mux_v->h.dwScale * FRAME_RATE_BASE;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
202 lavc_venc_context->qmin= lavc_param_vqmin;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
203 lavc_venc_context->qmax= lavc_param_vqmax;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
204 lavc_venc_context->max_qdiff= lavc_param_vqdiff;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
205 lavc_venc_context->qcompress= lavc_param_vqcompress;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
206 lavc_venc_context->qblur= lavc_param_vqblur;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
207 lavc_venc_context->max_b_frames= lavc_param_vmax_b_frames;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
208 lavc_venc_context->b_quant_factor= lavc_param_vb_qfactor;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
209 lavc_venc_context->rc_strategy= lavc_param_vrc_strategy;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
210 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
211 #ifdef CODEC_FLAG_PART
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
212 lavc_venc_context->b_quant_offset= lavc_param_vb_qoffset;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
213 lavc_venc_context->luma_elim_threshold= lavc_param_luma_elim_threshold;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
214 lavc_venc_context->chroma_elim_threshold= lavc_param_chroma_elim_threshold;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
215 lavc_venc_context->rtp_payload_size= lavc_param_packet_size;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
216 if(lavc_param_packet_size )lavc_venc_context->rtp_mode=1;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
217 lavc_venc_context->strict_std_compliance= lavc_param_strict;
6228
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
218 #endif
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
219 #if LIBAVCODEC_BUILD >= 4620
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
220 lavc_venc_context->i_quant_factor= lavc_param_vi_qfactor;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
221 lavc_venc_context->i_quant_offset= lavc_param_vi_qoffset;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
222 lavc_venc_context->rc_qsquish= lavc_param_rc_qsquish;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
223 lavc_venc_context->rc_qmod_amp= lavc_param_rc_qmod_amp;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
224 lavc_venc_context->rc_qmod_freq= lavc_param_rc_qmod_freq;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
225 lavc_venc_context->rc_eq= lavc_param_rc_eq;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
226 lavc_venc_context->rc_max_rate= lavc_param_rc_max_rate*1000;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
227 lavc_venc_context->rc_min_rate= lavc_param_rc_min_rate*1000;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
228 lavc_venc_context->rc_buffer_size= lavc_param_rc_buffer_size*1000;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
229 lavc_venc_context->rc_buffer_aggressivity= lavc_param_rc_buffer_aggressivity;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
230 lavc_venc_context->rc_initial_cplx= lavc_param_rc_initial_cplx;
7152
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
231
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
232 p= lavc_param_rc_override_string;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
233 for(i=0; p; i++){
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
234 int start, end, q;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
235 int e=sscanf(p, "%d,%d,%d", &start, &end, &q);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
236 if(e!=3){
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
237 mp_msg(MSGT_MENCODER,MSGL_ERR,"error parsing vrc_q\n");
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
238 return 0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
239 }
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
240 lavc_venc_context->rc_override=
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
241 realloc(lavc_venc_context->rc_override, sizeof(RcOverride)*(i+1));
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
242 lavc_venc_context->rc_override[i].start_frame= start;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
243 lavc_venc_context->rc_override[i].end_frame = end;
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
244 if(q>0){
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
245 lavc_venc_context->rc_override[i].qscale= q;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
246 lavc_venc_context->rc_override[i].quality_factor= 1.0;
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
247 }
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
248 else{
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
249 lavc_venc_context->rc_override[i].qscale= 0;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
250 lavc_venc_context->rc_override[i].quality_factor= -q/100.0;
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
251 }
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
252 p= strchr(p, '/');
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
253 if(p) p++;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
254 }
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
255 lavc_venc_context->rc_override_count=i;
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
256 #endif
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
257
6944
c72555c4bc63 mpeg4 mpeg quantizer encoding
michael
parents: 6673
diff changeset
258 #if LIBAVCODEC_BUILD >= 4619
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
259 lavc_venc_context->mpeg_quant=lavc_param_mpeg_quant;
6944
c72555c4bc63 mpeg4 mpeg quantizer encoding
michael
parents: 6673
diff changeset
260 #endif
7152
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
261
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
262 #if LIBAVCODEC_BUILD >= 4621
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
263 lavc_venc_context->dct_algo= lavc_param_fdct;
7152
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
264 #endif
5d8f64646cb5 dct selection support
michael
parents: 7127
diff changeset
265
7490
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
266 #if LIBAVCODEC_BUILD >= 4625
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
267 lavc_venc_context->lumi_masking= lavc_param_lumi_masking;
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
268 lavc_venc_context->temporal_cplx_masking= lavc_param_temporal_cplx_masking;
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
269 lavc_venc_context->spatial_cplx_masking= lavc_param_spatial_cplx_masking;
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
270 lavc_venc_context->p_masking= lavc_param_p_masking;
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
271 #endif
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
272
7389
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
273 #if LIBAVCODEC_BUILD >= 4623
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
274 if (lavc_param_aspect != 0.0)
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
275 {
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
276 /* 625 means CIF */
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
277 if (lavc_param_aspect == (float)(4.0/3.0))
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
278 lavc_venc_context->aspect_ratio_info = FF_ASPECT_4_3_625;
7389
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
279 else if (lavc_param_aspect == (float)(16.0/9.0))
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
280 lavc_venc_context->aspect_ratio_info = FF_ASPECT_16_9_625;
7389
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
281 else if (lavc_param_aspect == (float)(221.0/100.0))
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
282 {
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
283 lavc_venc_context->aspect_ratio_info = FF_ASPECT_EXTENDED;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
284 lavc_venc_context->aspected_width = 221;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
285 lavc_venc_context->aspected_height = 100;
7389
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
286 }
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
287 else
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
288 {
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
289 printf("Unsupported aspect ratio (%f)\n", lavc_param_aspect);
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
290 }
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
291 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "aspect_ratio_info: %d\n", lavc_venc_context->aspect_ratio_info);
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
292 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "par_width: %d\n", lavc_venc_context->aspected_width);
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
293 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "par_height: %d\n", lavc_venc_context->aspected_height);
7389
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
294 }
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
295 #endif
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
296
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
297 /* keyframe interval */
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
298 if (lavc_param_keyint >= 0) /* != -1 */
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
299 lavc_venc_context->gop_size = lavc_param_keyint;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
300 else
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
301 lavc_venc_context->gop_size = 250; /* default */
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
302
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
303 if (lavc_param_vhq)
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
304 {
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
305 printf("High quality encoding selected (non real time)!\n");
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
306 lavc_venc_context->flags = CODEC_FLAG_HQ;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
307 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
308 else
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
309 lavc_venc_context->flags = 0;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
310
5781
62e9e0c0bd6a hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents: 5778
diff changeset
311 /* 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
312 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
313 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
314 lavc_param_v4mv = 0;
62e9e0c0bd6a hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents: 5778
diff changeset
315 }
62e9e0c0bd6a hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents: 5778
diff changeset
316
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
317 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
318 #ifdef CODEC_FLAG_PART
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
319 lavc_venc_context->flags|= lavc_param_data_partitioning;
6228
ea6b20e70ac5 new options to support Michael's libavcodec patch, #ifdefed
arpi
parents: 5977
diff changeset
320 #endif
6461
michael
parents: 6255
diff changeset
321 #if LIBAVCODEC_BUILD >= 4614
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
322 if(lavc_param_gray) lavc_venc_context->flags|= CODEC_FLAG_GRAY;
6461
michael
parents: 6255
diff changeset
323 #endif
michael
parents: 6255
diff changeset
324
7490
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
325 #if LIBAVCODEC_BUILD >= 4625
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
326 if(lavc_param_normalize_aqp) lavc_venc_context->flags|= CODEC_FLAG_NORMALIZE_AQP;
ca3aa049c9d4 adaptive quant support ...
michael
parents: 7444
diff changeset
327 #endif
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
328
5778
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
329 /* lavc internal 2pass bitrate control */
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
330 #ifdef HAVE_DIVX4ENCORE
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
331 switch(lavc_param_vpass){
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
332 #else
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
333 switch(lavc_param_vpass?lavc_param_vpass:pass){
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
334 #endif
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
335 case 1:
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
336 lavc_venc_context->flags|= CODEC_FLAG_PASS1;
7089
michael
parents: 7088
diff changeset
337 #if LIBAVCODEC_BUILD >= 4620
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
338 stats_file= fopen(passtmpfile, "w");
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
339 if(stats_file==NULL){
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
340 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
341 return 0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
342 }
7089
michael
parents: 7088
diff changeset
343 #endif
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
344 break;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
345 case 2:
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
346 lavc_venc_context->flags|= CODEC_FLAG_PASS2;
7089
michael
parents: 7088
diff changeset
347 #if LIBAVCODEC_BUILD >= 4620
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
348 stats_file= fopen(passtmpfile, "r");
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
349 if(stats_file==NULL){
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
350 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
351 return 0;
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
352 }
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
353 fseek(stats_file, 0, SEEK_END);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
354 size= ftell(stats_file);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
355 fseek(stats_file, 0, SEEK_SET);
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
356
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
357 lavc_venc_context->stats_in= malloc(size + 1);
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
358 lavc_venc_context->stats_in[size]=0;
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
359
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
360 if(fread(lavc_venc_context->stats_in, size, 1, stats_file)<1){
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
361 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
362 return 0;
7089
michael
parents: 7088
diff changeset
363 }
michael
parents: 7088
diff changeset
364 #endif
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
365 break;
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
366 }
5778
f2586f1a3a96 support for new stuff (lavc internal 2pass, ...)
michael
parents: 5677
diff changeset
367
5624
d9af91d38449 workaround Juanjo's stupid vme change
arpi
parents: 5607
diff changeset
368 #ifdef ME_ZERO
d9af91d38449 workaround Juanjo's stupid vme change
arpi
parents: 5607
diff changeset
369 // workaround Juanjo's stupid incompatible change:
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
370 motion_estimation_method = lavc_param_vme;
5624
d9af91d38449 workaround Juanjo's stupid vme change
arpi
parents: 5607
diff changeset
371 #else
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
372 lavc_venc_context->me_method = ME_ZERO+lavc_param_vme;
5624
d9af91d38449 workaround Juanjo's stupid vme change
arpi
parents: 5607
diff changeset
373 #endif
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
374
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
375 /* fixed qscale :p */
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
376 if (lavc_param_vqscale)
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
377 {
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
378 printf("Using constant qscale = %d (VBR)\n", lavc_param_vqscale);
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
379 lavc_venc_context->flags |= CODEC_FLAG_QSCALE;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
380 lavc_venc_context->quality = lavc_param_vqscale;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
381 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
382
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
383 #ifdef HAVE_DIVX4ENCORE
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
384 switch(pass){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
385 case 1:
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
386 if (VbrControl_init_2pass_vbr_analysis(passtmpfile, 5) == -1){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
387 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
388 pass=0;
5781
62e9e0c0bd6a hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents: 5778
diff changeset
389 }
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
390 break;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
391 case 2:
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
392 if (VbrControl_init_2pass_vbr_encoding(passtmpfile,
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
393 lavc_venc_context->bit_rate,
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
394 (float)mux_v->h.dwRate/mux_v->h.dwScale,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
395 100, /* crispness */
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
396 5) == -1){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
397 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
398 pass=0;
5632
93c9df5225a7 2-pass qscale fixed
arpi
parents: 5624
diff changeset
399 } else
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
400 lavc_venc_context->flags|=CODEC_FLAG_QSCALE|CODEC_FLAG_TYPE; // VBR
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
401 break;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
402 }
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
403 #endif
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
404
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
405 if (avcodec_open(lavc_venc_context, vf->priv->codec) != 0) {
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
406 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantOpenCodec);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
407 return 0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
408 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
409
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
410 if (lavc_venc_context->codec->encode == NULL) {
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
411 mp_msg(MSGT_MENCODER,MSGL_ERR,"avcodec init failed (ctx->codec->encode == NULL)!\n");
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
412 return 0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
413 }
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
414
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
415 #if LIBAVCODEC_BUILD >= 4620
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
416 /* free second pass buffer, its not needed anymore */
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
417 if(lavc_venc_context->stats_in) free(lavc_venc_context->stats_in);
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
418 lavc_venc_context->stats_in= NULL;
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
419 #endif
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
420
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
421 return 1;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
422 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
423
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
424 static int control(struct vf_instance_s* vf, int request, void* data){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
425
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
426 return CONTROL_UNKNOWN;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
427 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
428
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
429 static int query_format(struct vf_instance_s* vf, unsigned int fmt){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
430 switch(fmt){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
431 case IMGFMT_YV12:
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
432 case IMGFMT_IYUV:
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
433 case IMGFMT_I420:
7389
6f3dd9df2cc2 aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents: 7368
diff changeset
434 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
435 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
436 return 0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
437 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
438
7368
a894e99c1e51 changing return type of put_image void->int
arpi
parents: 7152
diff changeset
439 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
440 int out_size;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
441 AVPicture lavc_venc_picture;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
442
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
443 lavc_venc_picture.data[0]=mpi->planes[0];
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
444 lavc_venc_picture.data[1]=mpi->planes[1];
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
445 lavc_venc_picture.data[2]=mpi->planes[2];
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
446 lavc_venc_picture.linesize[0]=mpi->stride[0];
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
447 lavc_venc_picture.linesize[1]=mpi->stride[1];
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
448 lavc_venc_picture.linesize[2]=mpi->stride[2];
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
449
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
450 #ifdef HAVE_DIVX4ENCORE
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
451 if(pass==2){ // handle 2-pass:
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
452 lavc_venc_context->flags|=CODEC_FLAG_QSCALE; // enable VBR
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
453 lavc_venc_context->quality=VbrControl_get_quant();
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
454 lavc_venc_context->key_frame=VbrControl_get_intra();
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
455 lavc_venc_context->gop_size=0x3fffffff;
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
456 out_size = avcodec_encode_video(lavc_venc_context, mux_v->buffer, mux_v->buffer_size,
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
457 &lavc_venc_picture);
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
458 VbrControl_update_2pass_vbr_encoding(lavc_venc_context->mv_bits,
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
459 lavc_venc_context->i_tex_bits+lavc_venc_context->p_tex_bits,
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
460 8*out_size);
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
461 } else
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
462 #endif
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
463 {
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
464 out_size = avcodec_encode_video(lavc_venc_context, mux_v->buffer, mux_v->buffer_size,
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
465 &lavc_venc_picture);
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
466 #ifdef HAVE_DIVX4ENCORE
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
467 if(pass==1){
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
468 VbrControl_update_2pass_vbr_analysis(lavc_venc_context->key_frame,
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
469 lavc_venc_context->mv_bits,
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
470 lavc_venc_context->i_tex_bits+lavc_venc_context->p_tex_bits,
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
471 8*out_size, lavc_venc_context->quality);
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
472 }
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
473 #endif
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
474 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
475
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
476 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
477
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
478 #if LIBAVCODEC_BUILD >= 4620
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
479 /* store stats if there are any */
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
480 if(lavc_venc_context->stats_out && stats_file)
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
481 fprintf(stats_file, "%s", lavc_venc_context->stats_out);
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
482 #endif
7368
a894e99c1e51 changing return type of put_image void->int
arpi
parents: 7152
diff changeset
483 return 1;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
484 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
485
5551
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
486 static void uninit(struct vf_instance_s* vf){
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
487 avcodec_close(lavc_venc_context);
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
488
7089
michael
parents: 7088
diff changeset
489 #if LIBAVCODEC_BUILD >= 4620
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
490 if(stats_file) fclose(stats_file);
7089
michael
parents: 7088
diff changeset
491
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
492 /* free rc_override */
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
493 if(lavc_venc_context->rc_override) free(lavc_venc_context->rc_override);
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
494 lavc_venc_context->rc_override= NULL;
7088
9a0017ee11aa support for the new ratecontrol code
michael
parents: 7039
diff changeset
495 #endif
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
496
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
497 if(vf->priv->context) free(vf->priv->context);
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
498 vf->priv->context= NULL;
5551
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
499 }
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
500
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
501 //===========================================================================//
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
502
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
503 static int vf_open(vf_instance_t *vf, char* args){
5551
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
504 vf->uninit=uninit;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
505 vf->config=config;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
506 vf->control=control;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
507 vf->query_format=query_format;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
508 vf->put_image=put_image;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
509 vf->priv=malloc(sizeof(struct vf_priv_s));
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
510 memset(vf->priv,0,sizeof(struct vf_priv_s));
7127
1e47c2e7aa8e mostly compiler warning fixes, some small bugfix
arpi
parents: 7090
diff changeset
511 vf->priv->mux=(aviwrite_stream_t*)args;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
512
5977
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
513 /* 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
514 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
515 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
516 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
517 {
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
518 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
519 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
520 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
521 }
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
522 else
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
523 {
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
524 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER));
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
525 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
526 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER);
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
527 }
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
528 mux_v->bih->biWidth=0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
529 mux_v->bih->biHeight=0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
530 mux_v->bih->biPlanes=1;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
531 mux_v->bih->biBitCount=24;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
532 if (!lavc_param_vcodec)
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
533 {
5977
e8f6f477aad0 a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents: 5972
diff changeset
534 printf("No libavcodec codec specified! It's required!\n");
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
535 return 0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
536 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
537
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
538 if (!strcasecmp(lavc_param_vcodec, "mpeg1") || !strcasecmp(lavc_param_vcodec, "mpeg1video"))
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
539 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '1');
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
540 else if (!strcasecmp(lavc_param_vcodec, "h263") || !strcasecmp(lavc_param_vcodec, "h263p"))
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
541 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '3');
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
542 else if (!strcasecmp(lavc_param_vcodec, "rv10"))
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
543 mux_v->bih->biCompression = mmioFOURCC('R', 'V', '1', '0');
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
544 else if (!strcasecmp(lavc_param_vcodec, "mjpeg"))
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
545 mux_v->bih->biCompression = mmioFOURCC('M', 'J', 'P', 'G');
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
546 else if (!strcasecmp(lavc_param_vcodec, "mpeg4"))
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
547 mux_v->bih->biCompression = mmioFOURCC('D', 'I', 'V', 'X');
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
548 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4"))
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
549 mux_v->bih->biCompression = mmioFOURCC('d', 'i', 'v', '3');
5972
80c25f6a535f msmpeg4v2 -> MP42 mapping, requested by Gabucino
alex
parents: 5781
diff changeset
550 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4v2"))
80c25f6a535f msmpeg4v2 -> MP42 mapping, requested by Gabucino
alex
parents: 5781
diff changeset
551 mux_v->bih->biCompression = mmioFOURCC('M', 'P', '4', '2');
6461
michael
parents: 6255
diff changeset
552 else if (!strcasecmp(lavc_param_vcodec, "wmv1"))
michael
parents: 6255
diff changeset
553 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '1');
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
554 else
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
555 mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0],
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
556 lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
557
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
558 if (!avcodec_inited){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
559 avcodec_init();
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
560 avcodec_register_all();
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
561 avcodec_inited=1;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
562 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
563
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
564 vf->priv->codec = (AVCodec *)avcodec_find_encoder_by_name(lavc_param_vcodec);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
565 if (!vf->priv->codec) {
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
566 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_MissingLAVCcodec, lavc_param_vcodec);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
567 return 0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
568 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
569
7444
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
570 #if LIBAVCODEC_BUILD >= 4624
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
571 vf->priv->context = avcodec_alloc_context();
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
572 #else
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
573 vf->priv->context = malloc(sizeof(AVCodecContext));
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
574 memset(vf->priv->context, 0, sizeof(AVCodecContext));
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
575 #endif
56a16bd12b79 use avcodec_alloc_context()
michael
parents: 7389
diff changeset
576
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
577 return 1;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
578 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
579
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
580 vf_info_t ve_info_lavc = {
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
581 "libavcodec encoder",
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
582 "lavc",
6673
d6adae1af0e3 #ifdef'ed divx4 2pass code - idea by Diego
arpi
parents: 6461
diff changeset
583 "A'rpi, Alex, Michael",
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
584 "for internal use by mencoder",
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
585 vf_open
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
586 };
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
587
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
588 //===========================================================================//
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
589 #endif