]> git.sesse.net Git - vlc/blob - modules/codec/ffmpeg/ffmpeg.h
Silent first 3 mpeg audio frames after a discontinuity. (Avoid glitch on seeks/errors)
[vlc] / modules / codec / ffmpeg / ffmpeg.h
1 /*****************************************************************************
2  * ffmpeg.h: decoder using the ffmpeg library
3  *****************************************************************************
4  * Copyright (C) 2001 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include <vlc_codecs.h>                               /* BITMAPINFOHEADER */
25
26 struct picture_t;
27 struct AVFrame;
28 struct AVCodecContext;
29 struct AVCodec;
30
31 void E_(InitLibavcodec)( vlc_object_t * );
32 void E_(LibavcodecCallback)( void *p_opaque, int i_level,
33                              const char *psz_format, va_list va );
34 int E_(GetFfmpegCodec) ( vlc_fourcc_t, int *, int *, const char ** );
35 int E_(GetVlcFourcc)   ( int, int *, vlc_fourcc_t *, const char ** );
36 int E_(GetFfmpegChroma)( vlc_fourcc_t );
37 vlc_fourcc_t E_(GetVlcChroma)( int );
38
39 /* Video decoder module */
40 int  E_( InitVideoDec )( decoder_t *, struct AVCodecContext *, struct AVCodec *,
41                          int, const char * );
42 void E_( EndVideoDec ) ( decoder_t * );
43 picture_t *E_( DecodeVideo ) ( decoder_t *, block_t ** );
44
45 /* Audio decoder module */
46 int  E_( InitAudioDec )( decoder_t *, struct AVCodecContext *, struct AVCodec *,
47                          int, const char * );
48 void E_( EndAudioDec ) ( decoder_t * );
49 aout_buffer_t *E_( DecodeAudio ) ( decoder_t *, block_t ** );
50
51 /* Chroma conversion module */
52 int  E_(OpenChroma)( vlc_object_t * );
53 void E_(CloseChroma)( vlc_object_t * );
54
55 /* Video encoder module */
56 int  E_(OpenEncoder) ( vlc_object_t * );
57 void E_(CloseEncoder)( vlc_object_t * );
58
59 /* Audio encoder module */
60 int  E_(OpenAudioEncoder) ( vlc_object_t * );
61 void E_(CloseAudioEncoder)( vlc_object_t * );
62
63 /* Demux module */
64 int  E_(OpenDemux) ( vlc_object_t * );
65 void E_(CloseDemux)( vlc_object_t * );
66
67 /* Mux module */
68 int  E_(OpenMux) ( vlc_object_t * );
69 void E_(CloseMux)( vlc_object_t * );
70
71 /* Video filter module */
72 int  E_(OpenFilter)( vlc_object_t * );
73 int  E_(OpenCropPadd)( vlc_object_t * );
74 void E_(CloseFilter)( vlc_object_t * );
75 int  E_(OpenDeinterlace)( vlc_object_t * );
76 void E_(CloseDeinterlace)( vlc_object_t * );
77 int  E_(OpenScaler)( vlc_object_t * );
78 void E_(CloseScaler)( vlc_object_t * );
79
80 /* Postprocessing module */
81 void *E_(OpenPostproc)( decoder_t *, vlc_bool_t * );
82 int E_(InitPostproc)( decoder_t *, void *, int, int, int );
83 int E_(PostprocPict)( decoder_t *, void *, picture_t *, struct AVFrame * );
84 void E_(ClosePostproc)( decoder_t *, void * );
85
86 /*****************************************************************************
87  * Module descriptor help strings
88  *****************************************************************************/
89 #define DR_TEXT N_("Direct rendering")
90 /* FIXME Does somebody who knows what it does, explain */
91 #define DR_LONGTEXT N_("Direct rendering")
92
93 #define ERROR_TEXT N_("Error resilience")
94 #define ERROR_LONGTEXT N_( \
95     "Ffmpeg can do error resilience.\n" \
96     "However, with a buggy encoder (such as the ISO MPEG-4 encoder from M$) " \
97     "this can produce a lot of errors.\n" \
98     "Valid values range from 0 to 4 (0 disables all errors resilience).")
99
100 #define BUGS_TEXT N_("Workaround bugs")
101 #define BUGS_LONGTEXT N_( \
102     "Try to fix some bugs:\n" \
103     "1  autodetect\n" \
104     "2  old msmpeg4\n" \
105     "4  xvid interlaced\n" \
106     "8  ump4 \n" \
107     "16 no padding\n" \
108     "32 ac vlc\n" \
109     "64 Qpel chroma.\n" \
110     "This must be the sum of the values. For example, to fix \"ac vlc\" and " \
111     "\"ump4\", enter 40.")
112
113 #define HURRYUP_TEXT N_("Hurry up")
114 #define HURRYUP_LONGTEXT N_( \
115     "The decoder can partially decode or skip frame(s) " \
116     "when there is not enough time. It's useful with low CPU power " \
117     "but it can produce distorted pictures.")
118
119 #define PP_Q_TEXT N_("Post processing quality")
120 #define PP_Q_LONGTEXT N_( \
121     "Quality of post processing. Valid range is 0 to 6\n" \
122     "Higher levels require considerable more CPU power, but produce " \
123     "better looking pictures." )
124
125 #define DEBUG_TEXT N_( "Debug mask" )
126 #define DEBUG_LONGTEXT N_( "Set ffmpeg debug mask" )
127
128 /* TODO: Use a predefined list, with 0,1,2,4,7 */
129 #define VISMV_TEXT N_( "Visualize motion vectors" )
130 #define VISMV_LONGTEXT N_( \
131     "You can overlay the motion vectors (arrows showing how the images move) "\
132     "on the image. This value is a mask, based on these values:\n"\
133     "1 - visualize forward predicted MVs of P frames\n" \
134     "2 - visualize forward predicted MVs of B frames\n" \
135     "4 - visualize backward predicted MVs of B frames\n" \
136     "To visualize all vectors, the value should be 7." )
137
138 #define LOWRES_TEXT N_( "Low resolution decoding" )
139 #define LOWRES_LONGTEXT N_( "Only decode a low resolution version of " \
140     "the video. This requires less processing power" )
141
142 #define SKIPLOOPF_TEXT N_( "Skip the loop filter for H.264 decoding" )
143 #define SKIPLOOPF_LONGTEXT N_( "Skipping the loop filter (aka deblocking) " \
144     "usually has a detrimental effect on quality. However it provides a big " \
145     "speedup for high definition streams." )
146
147 #define LIBAVCODEC_PP_TEXT N_("FFmpeg post processing filter chains")
148 /* FIXME (cut/past from ffmpeg */
149 #define LIBAVCODEC_PP_LONGTEXT \
150 N_("<filterName>[:<option>[:<option>...]][[,|/][-]<filterName>[:<option>...]]...\n" \
151 "long form example:\n" \
152 "vdeblock:autoq/hdeblock:autoq/linblenddeint    default,-vdeblock\n" \
153 "short form example:\n" \
154 "vb:a/hb:a/lb de,-vb\n" \
155 "more examples:\n" \
156 "tn:64:128:256\n" \
157 "Filters                        Options\n" \
158 "short  long name       short   long option     Description\n" \
159 "*      *               a       autoq           cpu power dependant enabler\n" \
160 "                       c       chrom           chrominance filtring enabled\n" \
161 "                       y       nochrom         chrominance filtring disabled\n" \
162 "hb     hdeblock        (2 Threshold)           horizontal deblocking filter\n" \
163 "       1. difference factor: default=64, higher -> more deblocking\n" \
164 "       2. flatness threshold: default=40, lower -> more deblocking\n" \
165 "                       the h & v deblocking filters share these\n" \
166 "                       so u cant set different thresholds for h / v\n" \
167 "vb     vdeblock        (2 Threshold)           vertical deblocking filter\n" \
168 "h1     x1hdeblock                              Experimental h deblock filter 1\n" \
169 "v1     x1vdeblock                              Experimental v deblock filter 1\n" \
170 "dr     dering                                  Deringing filter\n" \
171 "al     autolevels                              automatic brightness / contrast\n" \
172 "                       f       fullyrange      stretch luminance to (0..255)\n" \
173 "lb     linblenddeint                           linear blend deinterlacer\n" \
174 "li     linipoldeint                            linear interpolating deinterlace\n" \
175 "ci     cubicipoldeint                          cubic interpolating deinterlacer\n" \
176 "md     mediandeint                             median deinterlacer\n" \
177 "fd     ffmpegdeint                             ffmpeg deinterlacer\n" \
178 "de     default                                 hb:a,vb:a,dr:a,al\n" \
179 "fa     fast                                    h1:a,v1:a,dr:a,al\n" \
180 "tn     tmpnoise        (3 Thresholds)          Temporal Noise Reducer\n" \
181 "                       1. <= 2. <= 3.          larger -> stronger filtering\n" \
182 "fq     forceQuant      <quantizer>             Force quantizer\n")
183
184 /*
185  * Encoder options
186  */
187 #define ENC_CFG_PREFIX "sout-ffmpeg-"
188
189 #define ENC_KEYINT_TEXT N_( "Ratio of key frames" )
190 #define ENC_KEYINT_LONGTEXT N_( "Number of frames " \
191   "that will be coded for one key frame." )
192
193 #define ENC_BFRAMES_TEXT N_( "Ratio of B frames" )
194 #define ENC_BFRAMES_LONGTEXT N_( "Number of " \
195   "B frames that will be coded between two reference frames." )
196
197 #define ENC_VT_TEXT N_( "Video bitrate tolerance" )
198 #define ENC_VT_LONGTEXT N_( "Video bitrate tolerance in kbit/s." )
199
200 #define ENC_INTERLACE_TEXT N_( "Interlaced encoding" )
201 #define ENC_INTERLACE_LONGTEXT N_( "Enable dedicated " \
202   "algorithms for interlaced frames." )
203
204 #define ENC_INTERLACE_ME_TEXT N_( "Interlaced motion estimation" )
205 #define ENC_INTERLACE_ME_LONGTEXT N_( "Enable interlaced " \
206   "motion estimation algorithms. This requires more CPU." )
207
208 #define ENC_PRE_ME_TEXT N_( "Pre-motion estimation" )
209 #define ENC_PRE_ME_LONGTEXT N_( "Enable the pre-motion " \
210   "estimation algorithm.")
211
212 #define ENC_RC_STRICT_TEXT N_( "Strict rate control" )
213 #define ENC_RC_STRICT_LONGTEXT N_( "Enable the strict rate " \
214   "control algorithm." )
215
216 #define ENC_RC_BUF_TEXT N_( "Rate control buffer size" )
217 #define ENC_RC_BUF_LONGTEXT N_( "Rate control " \
218   "buffer size (in kbytes). A bigger buffer will allow for better rate " \
219   "control, but will cause a delay in the stream." )
220
221 #define ENC_RC_BUF_AGGR_TEXT N_( "Rate control buffer aggressiveness" )
222 #define ENC_RC_BUF_AGGR_LONGTEXT N_( "Rate control "\
223   "buffer aggressiveness." )
224
225 #define ENC_IQUANT_FACTOR_TEXT N_( "I quantization factor" )
226 #define ENC_IQUANT_FACTOR_LONGTEXT N_(  \
227   "Quantization factor of I frames, compared with P frames (for instance " \
228   "1.0 => same qscale for I and P frames)." )
229
230 #define ENC_NOISE_RED_TEXT N_( "Noise reduction" )
231 #define ENC_NOISE_RED_LONGTEXT N_( "Enable a simple noise " \
232   "reduction algorithm to lower the encoding length and bitrate, at the " \
233   "expense of lower quality frames." )
234
235 #define ENC_MPEG4_MATRIX_TEXT N_( "MPEG4 quantization matrix" )
236 #define ENC_MPEG4_MATRIX_LONGTEXT N_( "Use the MPEG4 " \
237   "quantization matrix for MPEG2 encoding. This generally yields a " \
238   "better looking picture, while still retaining the compatibility with " \
239   "standard MPEG2 decoders.")
240
241 #define ENC_HQ_TEXT N_( "Quality level" )
242 #define ENC_HQ_LONGTEXT N_( "Quality level " \
243   "for the encoding of motions vectors (this can slow down the encoding " \
244   "very much)." )
245
246 #define ENC_HURRYUP_TEXT N_( "Hurry up" )
247 #define ENC_HURRYUP_LONGTEXT N_( "The encoder " \
248   "can make on-the-fly quality tradeoffs if your CPU can't keep up with " \
249   "the encoding rate. It will disable trellis quantization, then the rate " \
250   "distortion of motion vectors (hq), and raise the noise reduction " \
251   "threshold to ease the encoder's task." )
252
253 #define ENC_QMIN_TEXT N_( "Minimum video quantizer scale" )
254 #define ENC_QMIN_LONGTEXT N_( "Minimum video " \
255   "quantizer scale." )
256
257 #define ENC_QMAX_TEXT N_( "Maximum video quantizer scale" )
258 #define ENC_QMAX_LONGTEXT N_( "Maximum video " \
259   "quantizer scale." )
260
261 #define ENC_TRELLIS_TEXT N_( "Trellis quantization" )
262 #define ENC_TRELLIS_LONGTEXT N_( "Enable trellis " \
263   "quantization (rate distortion for block coefficients)." )
264
265 #define ENC_QSCALE_TEXT N_( "Fixed quantizer scale" )
266 #define ENC_QSCALE_LONGTEXT N_( "A fixed video " \
267   "quantizer scale for VBR encoding (accepted values: 0.01 to 255.0)." )
268
269 #define ENC_STRICT_TEXT N_( "Strict standard compliance" )
270 #define ENC_STRICT_LONGTEXT N_( "Force a strict standard " \
271   "compliance when encoding (accepted values: -1, 0, 1)." )
272
273 #define ENC_LUMI_MASKING_TEXT N_( "Luminance masking" )
274 #define ENC_LUMI_MASKING_LONGTEXT N_( "Raise the quantizer for " \
275   "very bright macroblocks (default: 0.0)." )
276
277 #define ENC_DARK_MASKING_TEXT N_( "Darkness masking" )
278 #define ENC_DARK_MASKING_LONGTEXT N_( "Raise the quantizer for " \
279   "very dark macroblocks (default: 0.0)." )
280
281 #define ENC_P_MASKING_TEXT N_( "Motion masking" )
282 #define ENC_P_MASKING_LONGTEXT N_( "Raise the quantizer for " \
283   "macroblocks with a high temporal complexity (default: 0.0)." )
284
285 #define ENC_BORDER_MASKING_TEXT N_( "Border masking" )
286 #define ENC_BORDER_MASKING_LONGTEXT N_( "Raise the quantizer " \
287   "for macroblocks at the border of the frame (default: 0.0)." )
288
289 #define ENC_LUMA_ELIM_TEXT N_( "Luminance elimination" )
290 #define ENC_LUMA_ELIM_LONGTEXT N_( "Eliminates luminance blocks when " \
291   "the PSNR isn't much changed (default: 0.0). The H264 specification " \
292   "recommends -4." )
293
294 #define ENC_CHROMA_ELIM_TEXT N_( "Chrominance elimination" )
295 #define ENC_CHROMA_ELIM_LONGTEXT N_( "Eliminates chrominance blocks when " \
296   "the PSNR isn't much changed (default: 0.0). The H264 specification " \
297   "recommends 7." )
298
299 #define SCALEMODE_TEXT N_("Scaling mode")
300 #define SCALEMODE_LONGTEXT N_("Scaling mode to use.")
301
302 #define MUX_TEXT N_("Ffmpeg mux")
303 #define MUX_LONGTEXT N_("Force use of ffmpeg muxer.")
304
305 #define FFMPEG_COMMON_MEMBERS   \
306     int i_cat;                  \
307     int i_codec_id;             \
308     char *psz_namecodec;        \
309     AVCodecContext *p_context;  \
310     AVCodec        *p_codec;
311