annotate libmpcodecs/ve_lavc.c @ 8051:1b0d3175ef5f

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