]> git.sesse.net Git - ffmpeg/blob - libavcodec/libxvidff.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / libxvidff.c
1 /*
2  * Interface to xvidcore for mpeg4 encoding
3  * Copyright (c) 2004 Adam Thayer <krevnik@comcast.net>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * Interface to xvidcore for MPEG-4 compliant encoding.
25  * @author Adam Thayer (krevnik@comcast.net)
26  */
27
28 #include <xvid.h>
29 #include <unistd.h>
30 #include "avcodec.h"
31 #include "internal.h"
32 #include "libavutil/file.h"
33 #include "libavutil/cpu.h"
34 #include "libavutil/intreadwrite.h"
35 #include "libavutil/mathematics.h"
36 #include "libxvid_internal.h"
37 #include "mpegvideo.h"
38
39 /**
40  * Buffer management macros.
41  */
42 #define BUFFER_SIZE                 1024
43 #define BUFFER_REMAINING(x)         (BUFFER_SIZE - strlen(x))
44 #define BUFFER_CAT(x)               (&((x)[strlen(x)]))
45
46 /**
47  * Structure for the private Xvid context.
48  * This stores all the private context for the codec.
49  */
50 struct xvid_context {
51     void *encoder_handle;          /**< Handle for Xvid encoder */
52     int xsize;                     /**< Frame x size */
53     int ysize;                     /**< Frame y size */
54     int vop_flags;                 /**< VOP flags for Xvid encoder */
55     int vol_flags;                 /**< VOL flags for Xvid encoder */
56     int me_flags;                  /**< Motion Estimation flags */
57     int qscale;                    /**< Do we use constant scale? */
58     int quicktime_format;          /**< Are we in a QT-based format? */
59     AVFrame encoded_picture;       /**< Encoded frame information */
60     char *twopassbuffer;           /**< Character buffer for two-pass */
61     char *old_twopassbuffer;       /**< Old character buffer (two-pass) */
62     char *twopassfile;             /**< second pass temp file name */
63     unsigned char *intra_matrix;   /**< P-Frame Quant Matrix */
64     unsigned char *inter_matrix;   /**< I-Frame Quant Matrix */
65 };
66
67 /**
68  * Structure for the private first-pass plugin.
69  */
70 struct xvid_ff_pass1 {
71     int     version;                /**< Xvid version */
72     struct xvid_context *context;   /**< Pointer to private context */
73 };
74
75 /*
76  * Xvid 2-Pass Kludge Section
77  *
78  * Xvid's default 2-pass doesn't allow us to create data as we need to, so
79  * this section spends time replacing the first pass plugin so we can write
80  * statistic information as libavcodec requests in. We have another kludge
81  * that allows us to pass data to the second pass in Xvid without a custom
82  * rate-control plugin.
83  */
84
85
86 /**
87  * Initialize the two-pass plugin and context.
88  *
89  * @param param Input construction parameter structure
90  * @param handle Private context handle
91  * @return Returns XVID_ERR_xxxx on failure, or 0 on success.
92  */
93 static int xvid_ff_2pass_create(xvid_plg_create_t * param,
94                                 void ** handle) {
95     struct xvid_ff_pass1 *x = (struct xvid_ff_pass1 *)param->param;
96     char *log = x->context->twopassbuffer;
97
98     /* Do a quick bounds check */
99     if( log == NULL )
100         return XVID_ERR_FAIL;
101
102     /* We use snprintf() */
103     /* This is because we can safely prevent a buffer overflow */
104     log[0] = 0;
105     snprintf(log, BUFFER_REMAINING(log),
106         "# ffmpeg 2-pass log file, using xvid codec\n");
107     snprintf(BUFFER_CAT(log), BUFFER_REMAINING(log),
108         "# Do not modify. libxvidcore version: %d.%d.%d\n\n",
109         XVID_VERSION_MAJOR(XVID_VERSION),
110         XVID_VERSION_MINOR(XVID_VERSION),
111         XVID_VERSION_PATCH(XVID_VERSION));
112
113     *handle = x->context;
114     return 0;
115 }
116
117 /**
118  * Destroy the two-pass plugin context.
119  *
120  * @param ref Context pointer for the plugin
121  * @param param Destrooy context
122  * @return Returns 0, success guaranteed
123  */
124 static int xvid_ff_2pass_destroy(struct xvid_context *ref,
125                                 xvid_plg_destroy_t *param) {
126     /* Currently cannot think of anything to do on destruction */
127     /* Still, the framework should be here for reference/use */
128     if( ref->twopassbuffer != NULL )
129         ref->twopassbuffer[0] = 0;
130     return 0;
131 }
132
133 /**
134  * Enable fast encode mode during the first pass.
135  *
136  * @param ref Context pointer for the plugin
137  * @param param Frame data
138  * @return Returns 0, success guaranteed
139  */
140 static int xvid_ff_2pass_before(struct xvid_context *ref,
141                                 xvid_plg_data_t *param) {
142     int motion_remove;
143     int motion_replacements;
144     int vop_remove;
145
146     /* Nothing to do here, result is changed too much */
147     if( param->zone && param->zone->mode == XVID_ZONE_QUANT )
148         return 0;
149
150     /* We can implement a 'turbo' first pass mode here */
151     param->quant = 2;
152
153     /* Init values */
154     motion_remove = ~XVID_ME_CHROMA_PVOP &
155                     ~XVID_ME_CHROMA_BVOP &
156                     ~XVID_ME_EXTSEARCH16 &
157                     ~XVID_ME_ADVANCEDDIAMOND16;
158     motion_replacements = XVID_ME_FAST_MODEINTERPOLATE |
159                           XVID_ME_SKIP_DELTASEARCH |
160                           XVID_ME_FASTREFINE16 |
161                           XVID_ME_BFRAME_EARLYSTOP;
162     vop_remove = ~XVID_VOP_MODEDECISION_RD &
163                  ~XVID_VOP_FAST_MODEDECISION_RD &
164                  ~XVID_VOP_TRELLISQUANT &
165                  ~XVID_VOP_INTER4V &
166                  ~XVID_VOP_HQACPRED;
167
168     param->vol_flags &= ~XVID_VOL_GMC;
169     param->vop_flags &= vop_remove;
170     param->motion_flags &= motion_remove;
171     param->motion_flags |= motion_replacements;
172
173     return 0;
174 }
175
176 /**
177  * Capture statistic data and write it during first pass.
178  *
179  * @param ref Context pointer for the plugin
180  * @param param Statistic data
181  * @return Returns XVID_ERR_xxxx on failure, or 0 on success
182  */
183 static int xvid_ff_2pass_after(struct xvid_context *ref,
184                                 xvid_plg_data_t *param) {
185     char *log = ref->twopassbuffer;
186     const char *frame_types = " ipbs";
187     char frame_type;
188
189     /* Quick bounds check */
190     if( log == NULL )
191         return XVID_ERR_FAIL;
192
193     /* Convert the type given to us into a character */
194     if( param->type < 5 && param->type > 0 ) {
195         frame_type = frame_types[param->type];
196     } else {
197         return XVID_ERR_FAIL;
198     }
199
200     snprintf(BUFFER_CAT(log), BUFFER_REMAINING(log),
201         "%c %d %d %d %d %d %d\n",
202         frame_type, param->stats.quant, param->stats.kblks, param->stats.mblks,
203         param->stats.ublks, param->stats.length, param->stats.hlength);
204
205     return 0;
206 }
207
208 /**
209  * Dispatch function for our custom plugin.
210  * This handles the dispatch for the Xvid plugin. It passes data
211  * on to other functions for actual processing.
212  *
213  * @param ref Context pointer for the plugin
214  * @param cmd The task given for us to complete
215  * @param p1 First parameter (varies)
216  * @param p2 Second parameter (varies)
217  * @return Returns XVID_ERR_xxxx on failure, or 0 on success
218  */
219 static int xvid_ff_2pass(void *ref, int cmd, void *p1, void *p2)
220 {
221     switch( cmd ) {
222         case XVID_PLG_INFO:
223         case XVID_PLG_FRAME:
224             return 0;
225
226         case XVID_PLG_BEFORE:
227             return xvid_ff_2pass_before(ref, p1);
228
229         case XVID_PLG_CREATE:
230             return xvid_ff_2pass_create(p1, p2);
231
232         case XVID_PLG_AFTER:
233             return xvid_ff_2pass_after(ref, p1);
234
235         case XVID_PLG_DESTROY:
236             return xvid_ff_2pass_destroy(ref, p1);
237
238         default:
239             return XVID_ERR_FAIL;
240     }
241 }
242
243 /**
244  * Routine to create a global VO/VOL header for MP4 container.
245  * What we do here is extract the header from the Xvid bitstream
246  * as it is encoded. We also strip the repeated headers from the
247  * bitstream when a global header is requested for MPEG-4 ISO
248  * compliance.
249  *
250  * @param avctx AVCodecContext pointer to context
251  * @param frame Pointer to encoded frame data
252  * @param header_len Length of header to search
253  * @param frame_len Length of encoded frame data
254  * @return Returns new length of frame data
255  */
256 static int xvid_strip_vol_header(AVCodecContext *avctx,
257                   AVPacket *pkt,
258                   unsigned int header_len,
259                   unsigned int frame_len) {
260     int vo_len = 0, i;
261
262     for( i = 0; i < header_len - 3; i++ ) {
263         if( pkt->data[i] == 0x00 &&
264             pkt->data[i+1] == 0x00 &&
265             pkt->data[i+2] == 0x01 &&
266             pkt->data[i+3] == 0xB6 ) {
267             vo_len = i;
268             break;
269         }
270     }
271
272     if( vo_len > 0 ) {
273         /* We need to store the header, so extract it */
274         if( avctx->extradata == NULL ) {
275             avctx->extradata = av_malloc(vo_len);
276             memcpy(avctx->extradata, pkt->data, vo_len);
277             avctx->extradata_size = vo_len;
278         }
279         /* Less dangerous now, memmove properly copies the two
280            chunks of overlapping data */
281         memmove(pkt->data, &pkt->data[vo_len], frame_len - vo_len);
282         pkt->size = frame_len - vo_len;
283     }
284     return 0;
285 }
286
287 /**
288  * Routine to correct a possibly erroneous framerate being fed to us.
289  * Xvid currently chokes on framerates where the ticks per frame is
290  * extremely large. This function works to correct problems in this area
291  * by estimating a new framerate and taking the simpler fraction of
292  * the two presented.
293  *
294  * @param avctx Context that contains the framerate to correct.
295  */
296 static void xvid_correct_framerate(AVCodecContext *avctx)
297 {
298     int frate, fbase;
299     int est_frate, est_fbase;
300     int gcd;
301     float est_fps, fps;
302
303     frate = avctx->time_base.den;
304     fbase = avctx->time_base.num;
305
306     gcd = av_gcd(frate, fbase);
307     if( gcd > 1 ) {
308         frate /= gcd;
309         fbase /= gcd;
310     }
311
312     if( frate <= 65000 && fbase <= 65000 ) {
313         avctx->time_base.den = frate;
314         avctx->time_base.num = fbase;
315         return;
316     }
317
318     fps = (float)frate / (float)fbase;
319     est_fps = roundf(fps * 1000.0) / 1000.0;
320
321     est_frate = (int)est_fps;
322     if( est_fps > (int)est_fps ) {
323         est_frate = (est_frate + 1) * 1000;
324         est_fbase = (int)roundf((float)est_frate / est_fps);
325     } else
326         est_fbase = 1;
327
328     gcd = av_gcd(est_frate, est_fbase);
329     if( gcd > 1 ) {
330         est_frate /= gcd;
331         est_fbase /= gcd;
332     }
333
334     if( fbase > est_fbase ) {
335         avctx->time_base.den = est_frate;
336         avctx->time_base.num = est_fbase;
337         av_log(avctx, AV_LOG_DEBUG,
338             "Xvid: framerate re-estimated: %.2f, %.3f%% correction\n",
339             est_fps, (((est_fps - fps)/fps) * 100.0));
340     } else {
341         avctx->time_base.den = frate;
342         avctx->time_base.num = fbase;
343     }
344 }
345
346 /**
347  * Create the private context for the encoder.
348  * All buffers are allocated, settings are loaded from the user,
349  * and the encoder context created.
350  *
351  * @param avctx AVCodecContext pointer to context
352  * @return Returns 0 on success, -1 on failure
353  */
354 static av_cold int xvid_encode_init(AVCodecContext *avctx)  {
355     int xerr, i;
356     int xvid_flags = avctx->flags;
357     struct xvid_context *x = avctx->priv_data;
358     uint16_t *intra, *inter;
359     int fd;
360
361     xvid_plugin_single_t single       = { 0 };
362     struct xvid_ff_pass1 rc2pass1     = { 0 };
363     xvid_plugin_2pass2_t rc2pass2     = { 0 };
364     xvid_gbl_init_t xvid_gbl_init     = { 0 };
365     xvid_enc_create_t xvid_enc_create = { 0 };
366     xvid_enc_plugin_t plugins[7];
367
368     /* Bring in VOP flags from ffmpeg command-line */
369     x->vop_flags = XVID_VOP_HALFPEL; /* Bare minimum quality */
370     if( xvid_flags & CODEC_FLAG_4MV )
371         x->vop_flags |= XVID_VOP_INTER4V; /* Level 3 */
372     if( avctx->trellis
373         )
374         x->vop_flags |= XVID_VOP_TRELLISQUANT; /* Level 5 */
375     if( xvid_flags & CODEC_FLAG_AC_PRED )
376         x->vop_flags |= XVID_VOP_HQACPRED; /* Level 6 */
377     if( xvid_flags & CODEC_FLAG_GRAY )
378         x->vop_flags |= XVID_VOP_GREYSCALE;
379
380     /* Decide which ME quality setting to use */
381     x->me_flags = 0;
382     switch( avctx->me_method ) {
383        case ME_FULL:   /* Quality 6 */
384            x->me_flags |=  XVID_ME_EXTSEARCH16
385                        |   XVID_ME_EXTSEARCH8;
386
387        case ME_EPZS:   /* Quality 4 */
388            x->me_flags |=  XVID_ME_ADVANCEDDIAMOND8
389                        |   XVID_ME_HALFPELREFINE8
390                        |   XVID_ME_CHROMA_PVOP
391                        |   XVID_ME_CHROMA_BVOP;
392
393        case ME_LOG:    /* Quality 2 */
394        case ME_PHODS:
395        case ME_X1:
396            x->me_flags |=  XVID_ME_ADVANCEDDIAMOND16
397                        |   XVID_ME_HALFPELREFINE16;
398
399        case ME_ZERO:   /* Quality 0 */
400        default:
401            break;
402     }
403
404     /* Decide how we should decide blocks */
405     switch( avctx->mb_decision ) {
406        case 2:
407            x->vop_flags |= XVID_VOP_MODEDECISION_RD;
408            x->me_flags |=  XVID_ME_HALFPELREFINE8_RD
409                        |   XVID_ME_QUARTERPELREFINE8_RD
410                        |   XVID_ME_EXTSEARCH_RD
411                        |   XVID_ME_CHECKPREDICTION_RD;
412        case 1:
413            if( !(x->vop_flags & XVID_VOP_MODEDECISION_RD) )
414                x->vop_flags |= XVID_VOP_FAST_MODEDECISION_RD;
415            x->me_flags |=  XVID_ME_HALFPELREFINE16_RD
416                        |   XVID_ME_QUARTERPELREFINE16_RD;
417
418        default:
419            break;
420     }
421
422     /* Bring in VOL flags from ffmpeg command-line */
423     x->vol_flags = 0;
424     if( xvid_flags & CODEC_FLAG_GMC ) {
425         x->vol_flags |= XVID_VOL_GMC;
426         x->me_flags |= XVID_ME_GME_REFINE;
427     }
428     if( xvid_flags & CODEC_FLAG_QPEL ) {
429         x->vol_flags |= XVID_VOL_QUARTERPEL;
430         x->me_flags |= XVID_ME_QUARTERPELREFINE16;
431         if( x->vop_flags & XVID_VOP_INTER4V )
432             x->me_flags |= XVID_ME_QUARTERPELREFINE8;
433     }
434
435     xvid_gbl_init.version = XVID_VERSION;
436     xvid_gbl_init.debug = 0;
437
438 #if ARCH_PPC
439     /* Xvid's PPC support is borked, use libavcodec to detect */
440 #if HAVE_ALTIVEC
441     if (av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC) {
442         xvid_gbl_init.cpu_flags = XVID_CPU_FORCE | XVID_CPU_ALTIVEC;
443     } else
444 #endif
445         xvid_gbl_init.cpu_flags = XVID_CPU_FORCE;
446 #else
447     /* Xvid can detect on x86 */
448     xvid_gbl_init.cpu_flags = 0;
449 #endif
450
451     /* Initialize */
452     xvid_global(NULL, XVID_GBL_INIT, &xvid_gbl_init, NULL);
453
454     /* Create the encoder reference */
455     xvid_enc_create.version = XVID_VERSION;
456
457     /* Store the desired frame size */
458     xvid_enc_create.width = x->xsize = avctx->width;
459     xvid_enc_create.height = x->ysize = avctx->height;
460
461     /* Xvid can determine the proper profile to use */
462     /* xvid_enc_create.profile = XVID_PROFILE_S_L3; */
463
464     /* We don't use zones */
465     xvid_enc_create.zones = NULL;
466     xvid_enc_create.num_zones = 0;
467
468     xvid_enc_create.num_threads = avctx->thread_count;
469
470     xvid_enc_create.plugins = plugins;
471     xvid_enc_create.num_plugins = 0;
472
473     /* Initialize Buffers */
474     x->twopassbuffer = NULL;
475     x->old_twopassbuffer = NULL;
476     x->twopassfile = NULL;
477
478     if( xvid_flags & CODEC_FLAG_PASS1 ) {
479         rc2pass1.version = XVID_VERSION;
480         rc2pass1.context = x;
481         x->twopassbuffer = av_malloc(BUFFER_SIZE);
482         x->old_twopassbuffer = av_malloc(BUFFER_SIZE);
483         if( x->twopassbuffer == NULL || x->old_twopassbuffer == NULL ) {
484             av_log(avctx, AV_LOG_ERROR,
485                 "Xvid: Cannot allocate 2-pass log buffers\n");
486             return -1;
487         }
488         x->twopassbuffer[0] = x->old_twopassbuffer[0] = 0;
489
490         plugins[xvid_enc_create.num_plugins].func = xvid_ff_2pass;
491         plugins[xvid_enc_create.num_plugins].param = &rc2pass1;
492         xvid_enc_create.num_plugins++;
493     } else if( xvid_flags & CODEC_FLAG_PASS2 ) {
494         rc2pass2.version = XVID_VERSION;
495         rc2pass2.bitrate = avctx->bit_rate;
496
497         fd = av_tempfile("xvidff.", &x->twopassfile, 0, avctx);
498         if( fd == -1 ) {
499             av_log(avctx, AV_LOG_ERROR,
500                 "Xvid: Cannot write 2-pass pipe\n");
501             return -1;
502         }
503
504         if( avctx->stats_in == NULL ) {
505             av_log(avctx, AV_LOG_ERROR,
506                 "Xvid: No 2-pass information loaded for second pass\n");
507             return -1;
508         }
509
510         if( strlen(avctx->stats_in) >
511               write(fd, avctx->stats_in, strlen(avctx->stats_in)) ) {
512             close(fd);
513             av_log(avctx, AV_LOG_ERROR,
514                 "Xvid: Cannot write to 2-pass pipe\n");
515             return -1;
516         }
517
518         close(fd);
519         rc2pass2.filename = x->twopassfile;
520         plugins[xvid_enc_create.num_plugins].func = xvid_plugin_2pass2;
521         plugins[xvid_enc_create.num_plugins].param = &rc2pass2;
522         xvid_enc_create.num_plugins++;
523     } else if( !(xvid_flags & CODEC_FLAG_QSCALE) ) {
524         /* Single Pass Bitrate Control! */
525         single.version = XVID_VERSION;
526         single.bitrate = avctx->bit_rate;
527
528         plugins[xvid_enc_create.num_plugins].func = xvid_plugin_single;
529         plugins[xvid_enc_create.num_plugins].param = &single;
530         xvid_enc_create.num_plugins++;
531     }
532
533     /* Luminance Masking */
534     if( 0.0 != avctx->lumi_masking ) {
535         plugins[xvid_enc_create.num_plugins].func = xvid_plugin_lumimasking;
536         plugins[xvid_enc_create.num_plugins].param = NULL;
537         xvid_enc_create.num_plugins++;
538     }
539
540     /* Frame Rate and Key Frames */
541     xvid_correct_framerate(avctx);
542     xvid_enc_create.fincr = avctx->time_base.num;
543     xvid_enc_create.fbase = avctx->time_base.den;
544     if( avctx->gop_size > 0 )
545         xvid_enc_create.max_key_interval = avctx->gop_size;
546     else
547         xvid_enc_create.max_key_interval = 240; /* Xvid's best default */
548
549     /* Quants */
550     if( xvid_flags & CODEC_FLAG_QSCALE ) x->qscale = 1;
551     else x->qscale = 0;
552
553     xvid_enc_create.min_quant[0] = avctx->qmin;
554     xvid_enc_create.min_quant[1] = avctx->qmin;
555     xvid_enc_create.min_quant[2] = avctx->qmin;
556     xvid_enc_create.max_quant[0] = avctx->qmax;
557     xvid_enc_create.max_quant[1] = avctx->qmax;
558     xvid_enc_create.max_quant[2] = avctx->qmax;
559
560     /* Quant Matrices */
561     x->intra_matrix = x->inter_matrix = NULL;
562     if( avctx->mpeg_quant )
563        x->vol_flags |= XVID_VOL_MPEGQUANT;
564     if( (avctx->intra_matrix || avctx->inter_matrix) ) {
565        x->vol_flags |= XVID_VOL_MPEGQUANT;
566
567        if( avctx->intra_matrix ) {
568            intra = avctx->intra_matrix;
569            x->intra_matrix = av_malloc(sizeof(unsigned char) * 64);
570        } else
571            intra = NULL;
572        if( avctx->inter_matrix ) {
573            inter = avctx->inter_matrix;
574            x->inter_matrix = av_malloc(sizeof(unsigned char) * 64);
575        } else
576            inter = NULL;
577
578        for( i = 0; i < 64; i++ ) {
579            if( intra )
580                x->intra_matrix[i] = (unsigned char)intra[i];
581            if( inter )
582                x->inter_matrix[i] = (unsigned char)inter[i];
583        }
584     }
585
586     /* Misc Settings */
587     xvid_enc_create.frame_drop_ratio = 0;
588     xvid_enc_create.global = 0;
589     if( xvid_flags & CODEC_FLAG_CLOSED_GOP )
590         xvid_enc_create.global |= XVID_GLOBAL_CLOSED_GOP;
591
592     /* Determines which codec mode we are operating in */
593     avctx->extradata = NULL;
594     avctx->extradata_size = 0;
595     if( xvid_flags & CODEC_FLAG_GLOBAL_HEADER ) {
596         /* In this case, we are claiming to be MPEG4 */
597         x->quicktime_format = 1;
598         avctx->codec_id = CODEC_ID_MPEG4;
599     } else {
600         /* We are claiming to be Xvid */
601         x->quicktime_format = 0;
602         if(!avctx->codec_tag)
603             avctx->codec_tag = AV_RL32("xvid");
604     }
605
606     /* Bframes */
607     xvid_enc_create.max_bframes = avctx->max_b_frames;
608     xvid_enc_create.bquant_offset = 100 * avctx->b_quant_offset;
609     xvid_enc_create.bquant_ratio = 100 * avctx->b_quant_factor;
610     if( avctx->max_b_frames > 0  && !x->quicktime_format ) xvid_enc_create.global |= XVID_GLOBAL_PACKED;
611
612     /* Create encoder context */
613     xerr = xvid_encore(NULL, XVID_ENC_CREATE, &xvid_enc_create, NULL);
614     if( xerr ) {
615         av_log(avctx, AV_LOG_ERROR, "Xvid: Could not create encoder reference\n");
616         return -1;
617     }
618
619     x->encoder_handle = xvid_enc_create.handle;
620     avctx->coded_frame = &x->encoded_picture;
621
622     return 0;
623 }
624
625 /**
626  * Encode a single frame.
627  *
628  * @param avctx AVCodecContext pointer to context
629  * @param frame Pointer to encoded frame buffer
630  * @param buf_size Size of encoded frame buffer
631  * @param data Pointer to AVFrame of unencoded frame
632  * @return Returns 0 on success, -1 on failure
633  */
634 static int xvid_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
635                              const AVFrame *picture, int *got_packet)
636 {
637     int xerr, i, ret, user_packet = !!pkt->data;
638     char *tmp;
639     struct xvid_context *x = avctx->priv_data;
640     AVFrame *p = &x->encoded_picture;
641     int mb_width   = (avctx->width  + 15) / 16;
642     int mb_height  = (avctx->height + 15) / 16;
643
644     xvid_enc_frame_t xvid_enc_frame = { 0 };
645     xvid_enc_stats_t xvid_enc_stats = { 0 };
646
647     if ((ret = ff_alloc_packet2(avctx, pkt, mb_width*mb_height*MAX_MB_BYTES + FF_MIN_BUFFER_SIZE)) < 0)
648         return ret;
649
650     /* Start setting up the frame */
651     xvid_enc_frame.version = XVID_VERSION;
652     xvid_enc_stats.version = XVID_VERSION;
653     *p = *picture;
654
655     /* Let Xvid know where to put the frame. */
656     xvid_enc_frame.bitstream = pkt->data;
657     xvid_enc_frame.length    = pkt->size;
658
659     /* Initialize input image fields */
660     if( avctx->pix_fmt != PIX_FMT_YUV420P ) {
661         av_log(avctx, AV_LOG_ERROR, "Xvid: Color spaces other than 420p not supported\n");
662         return -1;
663     }
664
665     xvid_enc_frame.input.csp = XVID_CSP_PLANAR; /* YUV420P */
666
667     for( i = 0; i < 4; i++ ) {
668         xvid_enc_frame.input.plane[i] = picture->data[i];
669         xvid_enc_frame.input.stride[i] = picture->linesize[i];
670     }
671
672     /* Encoder Flags */
673     xvid_enc_frame.vop_flags = x->vop_flags;
674     xvid_enc_frame.vol_flags = x->vol_flags;
675     xvid_enc_frame.motion = x->me_flags;
676     xvid_enc_frame.type =
677         picture->pict_type == AV_PICTURE_TYPE_I ? XVID_TYPE_IVOP :
678         picture->pict_type == AV_PICTURE_TYPE_P ? XVID_TYPE_PVOP :
679         picture->pict_type == AV_PICTURE_TYPE_B ? XVID_TYPE_BVOP :
680                                           XVID_TYPE_AUTO;
681
682     /* Pixel aspect ratio setting */
683     if (avctx->sample_aspect_ratio.num < 0 || avctx->sample_aspect_ratio.num > 255 ||
684         avctx->sample_aspect_ratio.den < 0 || avctx->sample_aspect_ratio.den > 255) {
685         av_log(avctx, AV_LOG_ERROR, "Invalid pixel aspect ratio %i/%i\n",
686                avctx->sample_aspect_ratio.num, avctx->sample_aspect_ratio.den);
687         return -1;
688     }
689     xvid_enc_frame.par = XVID_PAR_EXT;
690     xvid_enc_frame.par_width  = avctx->sample_aspect_ratio.num;
691     xvid_enc_frame.par_height = avctx->sample_aspect_ratio.den;
692
693     /* Quant Setting */
694     if( x->qscale ) xvid_enc_frame.quant = picture->quality / FF_QP2LAMBDA;
695     else xvid_enc_frame.quant = 0;
696
697     /* Matrices */
698     xvid_enc_frame.quant_intra_matrix = x->intra_matrix;
699     xvid_enc_frame.quant_inter_matrix = x->inter_matrix;
700
701     /* Encode */
702     xerr = xvid_encore(x->encoder_handle, XVID_ENC_ENCODE,
703         &xvid_enc_frame, &xvid_enc_stats);
704
705     /* Two-pass log buffer swapping */
706     avctx->stats_out = NULL;
707     if( x->twopassbuffer ) {
708         tmp = x->old_twopassbuffer;
709         x->old_twopassbuffer = x->twopassbuffer;
710         x->twopassbuffer = tmp;
711         x->twopassbuffer[0] = 0;
712         if( x->old_twopassbuffer[0] != 0 ) {
713             avctx->stats_out = x->old_twopassbuffer;
714         }
715     }
716
717     if (xerr > 0) {
718         *got_packet = 1;
719
720         p->quality = xvid_enc_stats.quant * FF_QP2LAMBDA;
721         if( xvid_enc_stats.type == XVID_TYPE_PVOP )
722             p->pict_type = AV_PICTURE_TYPE_P;
723         else if( xvid_enc_stats.type == XVID_TYPE_BVOP )
724             p->pict_type = AV_PICTURE_TYPE_B;
725         else if( xvid_enc_stats.type == XVID_TYPE_SVOP )
726             p->pict_type = AV_PICTURE_TYPE_S;
727         else
728             p->pict_type = AV_PICTURE_TYPE_I;
729         if( xvid_enc_frame.out_flags & XVID_KEYFRAME ) {
730             p->key_frame = 1;
731             pkt->flags |= AV_PKT_FLAG_KEY;
732             if( x->quicktime_format )
733                 return xvid_strip_vol_header(avctx, pkt,
734                     xvid_enc_stats.hlength, xerr);
735          } else
736             p->key_frame = 0;
737
738         pkt->size = xerr;
739
740         return 0;
741     } else {
742         if (!user_packet)
743             av_free_packet(pkt);
744         if (!xerr)
745             return 0;
746         av_log(avctx, AV_LOG_ERROR, "Xvid: Encoding Error Occurred: %i\n", xerr);
747         return -1;
748     }
749 }
750
751 /**
752  * Destroy the private context for the encoder.
753  * All buffers are freed, and the Xvid encoder context is destroyed.
754  *
755  * @param avctx AVCodecContext pointer to context
756  * @return Returns 0, success guaranteed
757  */
758 static av_cold int xvid_encode_close(AVCodecContext *avctx) {
759     struct xvid_context *x = avctx->priv_data;
760
761     xvid_encore(x->encoder_handle, XVID_ENC_DESTROY, NULL, NULL);
762
763     av_freep(&avctx->extradata);
764     if( x->twopassbuffer != NULL ) {
765         av_free(x->twopassbuffer);
766         av_free(x->old_twopassbuffer);
767         avctx->stats_out = NULL;
768     }
769     av_free(x->twopassfile);
770     av_free(x->intra_matrix);
771     av_free(x->inter_matrix);
772
773     return 0;
774 }
775
776 /**
777  * Xvid codec definition for libavcodec.
778  */
779 AVCodec ff_libxvid_encoder = {
780     .name           = "libxvid",
781     .type           = AVMEDIA_TYPE_VIDEO,
782     .id             = CODEC_ID_MPEG4,
783     .priv_data_size = sizeof(struct xvid_context),
784     .init           = xvid_encode_init,
785     .encode2        = xvid_encode_frame,
786     .close          = xvid_encode_close,
787     .pix_fmts       = (const enum PixelFormat[]){ PIX_FMT_YUV420P, PIX_FMT_NONE },
788     .long_name      = NULL_IF_CONFIG_SMALL("libxvidcore MPEG-4 part 2"),
789 };