[cvs] / xvidcore / src / divx4.c Repository:
ViewVC logotype

Diff of /xvidcore/src/divx4.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6, Mon Apr 15 08:03:50 2002 UTC revision 1.16.2.2, Sat Nov 2 16:11:06 2002 UTC
# Line 1  Line 1 
1  /**************************************************************************  /**************************************************************************
2   *   *
3   *      XVID MPEG-4 VIDEO CODEC   *      XVID MPEG-4 VIDEO CODEC
4   *      opendivx api wrapper   *  - OpenDivx API wrapper -
5   *   *
6   *      This program is an implementation of a part of one or more MPEG-4   *      This program is an implementation of a part of one or more MPEG-4
7   *      Video tools as specified in ISO/IEC 14496-2 standard.  Those intending   *      Video tools as specified in ISO/IEC 14496-2 standard.  Those intending
# Line 32  Line 32 
32   *   *
33   *      History:   *      History:
34   *   *
35     *      24.02.2002      #def BFRAMES compatibility
36   *      26.02.2001      fixed dec_csp bugs   *      26.02.2001      fixed dec_csp bugs
37   *      26.12.2001      xvid_init() support   *      26.12.2001      xvid_init() support
38   *      22.12.2001      removed some compiler warnings   *      22.12.2001      removed some compiler warnings
39   *      16.12.2001      inital version; (c)2001 peter ross <pross@cs.rmit.edu.au>   *      16.12.2001      inital version; (c)2001 peter ross <pross@cs.rmit.edu.au>
40   *   *
41     *  $Id$
42     *
43   *************************************************************************/   *************************************************************************/
44    
45    #include <stdlib.h>
46  #include <malloc.h>  #include <string.h>
47  #include <string.h>     // memset  #include <stdio.h>
48    
49  #include "xvid.h"  #include "xvid.h"
50  #include "divx4.h"  #include "divx4.h"
# Line 50  Line 53 
53    
54  #define EMULATED_DIVX_VERSION 20011001  #define EMULATED_DIVX_VERSION 20011001
55    
56  // decore  /**************************************************************************
57     * Divx Instance Structure
58     *
59     * This chain list datatype allows XviD do instanciate multiples divx4
60     * sessions.
61     *
62     * ToDo : The way this chain list is used does not guarantee reentrance
63     *        because they are not protected by any kind of mutex to allow
64     *        only one modifier. We should add a mutex for each element in
65     *        the chainlist.
66     *************************************************************************/
67    
68    
69  typedef struct DINST  typedef struct DINST
# Line 61  Line 74 
74          void * handle;          void * handle;
75          XVID_DEC_FRAME xframe;          XVID_DEC_FRAME xframe;
76    
77  } DINST;  }
78    DINST;
79    
80    typedef struct EINST
81    {
82            struct EINST *next;
83    
84  static DINST * dhead = NULL;          void *handle;
85            int quality;
86    
87    }
88    EINST;
89    
90  DINST * dinst_find(unsigned long key)  /**************************************************************************
91  {   * Global data (needed to emulate correctly exported symbols from divx4)
92          DINST * dcur = dhead;   *************************************************************************/
93    
94          while (dcur)  /* This is not used in this module but is required by some divx4 encoders*/
95          {  int quiet_encore = 1;
                 if (dcur->key == key)  
                 {  
                         return dcur;  
                 }  
                 dcur = dcur->next;  
         }  
96    
97          return NULL;  /**************************************************************************
98  }   * Local data
99     *************************************************************************/
100    
101    /* The Divx4 instance chainlist */
102    static DINST *dhead = NULL;
103    static EINST *ehead = NULL;
104    
105  DINST * dinst_add(unsigned long key)  /* Divx4 quality to XviD encoder motion flag presets */
106  {  static int const divx4_motion_presets[7] = {
107          DINST * dnext = dhead;          0,
108    
109          dhead = malloc(sizeof(DINST));          0,
         if (dhead == NULL)  
         {  
                 dhead = dnext;  
                 return NULL;  
         }  
110    
111          dhead->key = key;          PMV_ADVANCEDDIAMOND16,
         dhead->next = dnext;  
112    
113          return dhead;          PMV_HALFPELREFINE16,
 }  
114    
115            PMV_HALFPELREFINE16 | PMV_HALFPELREFINE8,
116    
117  void dinst_remove(unsigned long key)          PMV_HALFPELREFINE16 | PMV_HALFPELREFINE8,
 {  
         DINST * dcur = dhead;  
118    
119          if (dhead == NULL)          PMV_HALFPELREFINE16 | PMV_EXTSEARCH16 | PMV_HALFPELREFINE8
120          {  };
                 return;  
         }  
121    
         if (dcur->key == key)  
         {  
                 dhead = dcur->next;  
                 free(dcur);  
                 return;  
         }  
122    
123          while (dcur->next)  /* Divx4 quality to general encoder flag presets */
124          {  static int const divx4_general_presets[7] = {
125                  if (dcur->next->key == key)          0,
126                  {          XVID_H263QUANT,
127                          DINST * tmp = dcur->next;          XVID_H263QUANT,
128                          dcur->next = tmp->next;          XVID_H263QUANT | XVID_HALFPEL,
129                          free(tmp);          XVID_H263QUANT | XVID_INTER4V | XVID_HALFPEL,
130                          return;          XVID_H263QUANT | XVID_INTER4V | XVID_HALFPEL,
131                  }          XVID_H263QUANT | XVID_INTER4V | XVID_HALFPEL
132                  dcur = dcur->next;  };
         }  
 }  
133    
134    /**************************************************************************
135     * Local Prototypes
136     *************************************************************************/
137    
138  int xvid_to_opendivx_dec_csp(int csp)  /* Chain list helper functions */
139  {  static DINST *dinst_find(unsigned long key);
140          switch(csp)  static DINST *dinst_add(unsigned long key);
141          {  static void dinst_remove(unsigned long key);
142          case DEC_YV12 :  
143                  return XVID_CSP_YV12;  static EINST *einst_find(void *handle);
144          case DEC_420 :  static EINST *einst_add(void *handle);
145                  return XVID_CSP_I420;  static void einst_remove(void *handle);
146          case DEC_YUY2 :  
147                  return XVID_CSP_YUY2;  /* Converts divx4 colorspaces codes to xvid codes */
148          case DEC_UYVY :  static int xvid_to_opendivx_dec_csp(int csp);
149                  return XVID_CSP_UYVY;  static int xvid_to_opendivx_enc_csp(int csp);
         case DEC_RGB32 :  
                 return XVID_CSP_VFLIP | XVID_CSP_RGB32;  
         case DEC_RGB24 :  
                 return XVID_CSP_VFLIP | XVID_CSP_RGB24;  
         case DEC_RGB565 :  
                 return XVID_CSP_VFLIP | XVID_CSP_RGB565;  
         case DEC_RGB555 :  
                 return XVID_CSP_VFLIP | XVID_CSP_RGB555;  
         case DEC_RGB32_INV :  
                 return XVID_CSP_RGB32;  
         case DEC_RGB24_INV :  
                 return XVID_CSP_RGB24;  
         case DEC_RGB565_INV :  
                 return XVID_CSP_RGB565;  
         case DEC_RGB555_INV :  
                 return XVID_CSP_RGB555;  
         case DEC_USER :  
                 return XVID_CSP_USER;  
         default :  
                 return -1;  
         }  
 }  
150    
151    /**************************************************************************
152     * decore part
153     *
154     * decore is the divx4 entry point used to decompress the mpeg4 bitstream
155     * into a user defined image format.
156     *************************************************************************/
157    
158  int decore(unsigned long key, unsigned long opt,  int
159                                          void * param1, void * param2)  decore(unsigned long key,
160               unsigned long opt,
161               void *param1,
162               void *param2)
163  {  {
164    
165          int xerr;          int xerr;
166    
167          switch (opt)          switch (opt) {
168          {  
169          case DEC_OPT_MEMORY_REQS :          case DEC_OPT_MEMORY_REQS :
170                  {                  {
171                          memset(param2, 0, sizeof(DEC_MEM_REQS));                          memset(param2, 0, sizeof(DEC_MEM_REQS));
# Line 183  Line 174 
174    
175          case DEC_OPT_INIT :          case DEC_OPT_INIT :
176                  {                  {
                         DEC_PARAM * dparam = (DEC_PARAM *)param1;  
177                          XVID_INIT_PARAM xinit;                          XVID_INIT_PARAM xinit;
178                          XVID_DEC_PARAM xparam;                          XVID_DEC_PARAM xparam;
179                          DINST * dcur = dinst_find(key);                          DINST *dcur;
180                          if (dcur == NULL)                          DEC_PARAM *dparam = (DEC_PARAM *) param1;
181                          {  
182                            /* Find the divx4 instance */
183                            if ((dcur = dinst_find(key)) == NULL) {
184                                  dcur = dinst_add(key);                                  dcur = dinst_add(key);
185                          }                          }
186    
187                            /*
188                             * XviD initialization
189                             * XviD will detect the host cpu type and activate optimized
190                             * functions according to the host cpu features.
191                             */
192                          xinit.cpu_flags = 0;                          xinit.cpu_flags = 0;
193                          xvid_init(NULL, 0, &xinit, NULL);                          xvid_init(NULL, 0, &xinit, NULL);
194    
195                            /* XviD decoder initialization for this instance */
196                          xparam.width = dparam->x_dim;                          xparam.width = dparam->x_dim;
197                          xparam.height = dparam->y_dim;                          xparam.height = dparam->y_dim;
198                          dcur->xframe.colorspace = xvid_to_opendivx_dec_csp(dparam->output_format);                          dcur->xframe.colorspace =
199                                    xvid_to_opendivx_dec_csp(dparam->output_format);
200    
201                          xerr = decoder_create(&xparam);                          xerr = decoder_create(&xparam);
202    
203                            /* Store the xvid handle into the divx4 instance chainlist */
204                          dcur->handle = xparam.handle;                          dcur->handle = xparam.handle;
205    
206                          break;                          break;
# Line 208  Line 208 
208    
209          case DEC_OPT_RELEASE :          case DEC_OPT_RELEASE :
210                  {                  {
211                          DINST * dcur = dinst_find(key);                          DINST *dcur;
212                          if (dcur == NULL)  
213                          {                          /* Find the divx4 instance into the chain list */
214                            if ((dcur = dinst_find(key)) == NULL) {
215                                  return DEC_EXIT;                                  return DEC_EXIT;
216                          }                          }
217    
218                            /* Destroy the XviD decoder attached to this divx4 instance */
219                          xerr = decoder_destroy(dcur->handle);                          xerr = decoder_destroy(dcur->handle);
220    
221                            /* Remove the divx4 instance from the chainlist */
222                          dinst_remove(key);                          dinst_remove(key);
223    
224                          break;                          break;
# Line 223  Line 226 
226    
227          case DEC_OPT_SETPP :          case DEC_OPT_SETPP :
228                  {                  {
229                          // DEC_SET * dset = (DEC_SET *)param1;                          DINST *dcur;
230                          DINST * dcur = dinst_find(key);  
231                          if (dcur == NULL)                          /* Find the divx4 instance into the chain list */
232                          {                          if ((dcur = dinst_find(key)) == NULL) {
233                                  return DEC_EXIT;                                  return DEC_EXIT;
234                          }                          }
235    
236                          // dcur->xframe.pp = dset->postproc_level;                          /*
237                             * We return DEC_OK but XviD has no postprocessing implemented
238                             * in core.
239                             */
240                          return DEC_OK;                          return DEC_OK;
241                  }                  }
242    
243          case DEC_OPT_SETOUT :          case DEC_OPT_SETOUT :
244                  {                  {
245                            DINST *dcur;
246                          DEC_PARAM * dparam = (DEC_PARAM *)param1;                          DEC_PARAM * dparam = (DEC_PARAM *)param1;
247                          DINST * dcur = dinst_find(key);  
248                          if (dcur == NULL)                          if ((dcur = dinst_find(key)) == NULL) {
                         {  
249                                  return DEC_EXIT;                                  return DEC_EXIT;
250                          }                          }
251    
252                          dcur->xframe.colorspace = xvid_to_opendivx_dec_csp(dparam->output_format);                          /* Change the output colorspace */
253                            dcur->xframe.colorspace =
254                                    xvid_to_opendivx_dec_csp(dparam->output_format);
255    
256                          return DEC_OK;                          return DEC_OK;
257                  }                  }
# Line 252  Line 259 
259          case DEC_OPT_FRAME:          case DEC_OPT_FRAME:
260                  {                  {
261                          int csp_tmp = 0;                          int csp_tmp = 0;
262                            DINST *dcur;
263                          DEC_FRAME * dframe = (DEC_FRAME *)param1;                          DEC_FRAME * dframe = (DEC_FRAME *)param1;
264                          DINST * dcur = dinst_find(key);  
265                          if (dcur == NULL)                          if ((dcur = dinst_find(key)) == NULL) {
                         {  
266                                  return DEC_EXIT;                                  return DEC_EXIT;
267                          }                          }
268    
269                            /* Copy the divx4 fields to the XviD decoder structure */
270                          dcur->xframe.bitstream = dframe->bitstream;                          dcur->xframe.bitstream = dframe->bitstream;
271                          dcur->xframe.length = dframe->length;                          dcur->xframe.length = dframe->length;
272                          dcur->xframe.image = dframe->bmp;                          dcur->xframe.image = dframe->bmp;
273                          dcur->xframe.stride = dframe->stride;                          dcur->xframe.stride = dframe->stride;
274    
275                          if (!dframe->render_flag)                          /* Does the frame need to be skipped ? */
276                          {                          if (!dframe->render_flag) {
277                                    /*
278                                     * Then we use the null colorspace to force XviD to
279                                     * skip the frame. The original colorspace will be
280                                     * restored after the decoder call
281                                     */
282                                  csp_tmp = dcur->xframe.colorspace;                                  csp_tmp = dcur->xframe.colorspace;
283                                  dcur->xframe.colorspace = XVID_CSP_NULL;                                  dcur->xframe.colorspace = XVID_CSP_NULL;
284                          }                          }
285    
286                            /* Decode the bitstream */
287                          xerr = decoder_decode(dcur->handle, &dcur->xframe);                          xerr = decoder_decode(dcur->handle, &dcur->xframe);
288    
289                          if (!dframe->render_flag)                          /* Restore the real colorspace for this instance */
290                          {                          if (!dframe->render_flag) {
291                                  dcur->xframe.colorspace = csp_tmp;                                  dcur->xframe.colorspace = csp_tmp;
292                          }                          }
293    
294                          break;                          break;
295                  }                  }
296    
   
297          case DEC_OPT_FRAME_311 :          case DEC_OPT_FRAME_311 :
298                    /* XviD does not handle Divx ;-) 3.11 yet */
299                  return DEC_EXIT;                  return DEC_EXIT;
300    
   
301          case DEC_OPT_VERSION:          case DEC_OPT_VERSION:
302                  return EMULATED_DIVX_VERSION;                  return EMULATED_DIVX_VERSION;
303    
304          default :          default :
305                  return DEC_EXIT;                  return DEC_EXIT;
306          }          }
307    
308    
309          switch(xerr)          /* XviD error code -> Divx4 */
310          {          switch (xerr) {
311          case XVID_ERR_OK : return DEC_OK;          case XVID_ERR_OK:
312          case XVID_ERR_MEMORY : return DEC_MEMORY;                  return DEC_OK;
313          case XVID_ERR_FORMAT : return DEC_BAD_FORMAT;          case XVID_ERR_MEMORY:
314          default : // case XVID_ERR_FAIL :                  return DEC_MEMORY;
315            case XVID_ERR_FORMAT:
316                    return DEC_BAD_FORMAT;
317            default:
318                  return DEC_EXIT;                  return DEC_EXIT;
319          }          }
320  }  }
321    
322    /**************************************************************************
323     * Encore Part
324     *
325  // encore   * encore is the divx4 entry point used to compress a frame to a mpeg4
326     * bitstream.
327     *************************************************************************/
328    
329  #define FRAMERATE_INCR          1001  #define FRAMERATE_INCR          1001
330    
331  int divx4_motion_presets[7] = {  int
332          0, PMV_QUICKSTOP16, PMV_EARLYSTOP16, PMV_EARLYSTOP16 | PMV_EARLYSTOP8,  encore(void *handle,
333          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16 | PMV_EARLYSTOP8 | PMV_HALFPELDIAMOND8,             int opt,
334          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16 | PMV_EARLYSTOP8 | PMV_HALFPELDIAMOND8,             void *param1,
335          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16 | PMV_EXTSEARCH16 |             void *param2)
         PMV_EARLYSTOP8 | PMV_HALFPELREFINE8 | PMV_HALFPELDIAMOND8  
 };  
   
 int quality;  
   
 int encore(void * handle, int opt, void * param1, void * param2)  
336  {  {
337    
338          int xerr;          int xerr;
339    
340          switch(opt)          switch (opt) {
         {  
341          case ENC_OPT_INIT :          case ENC_OPT_INIT :
342                  {                  {
343                            EINST *ecur;
344                          ENC_PARAM * eparam = (ENC_PARAM *)param1;                          ENC_PARAM * eparam = (ENC_PARAM *)param1;
345                          XVID_INIT_PARAM xinit;                          XVID_INIT_PARAM xinit;
346                          XVID_ENC_PARAM xparam;                          XVID_ENC_PARAM xparam;
347    
348                            /* Init XviD which will detect host cpu features */
349                          xinit.cpu_flags = 0;                          xinit.cpu_flags = 0;
350                          xvid_init(NULL, 0, &xinit, NULL);                          xvid_init(NULL, 0, &xinit, NULL);
351    
352                            /* Settings are copied to the XviD encoder structure */
353                          xparam.width = eparam->x_dim;                          xparam.width = eparam->x_dim;
354                          xparam.height = eparam->y_dim;                          xparam.height = eparam->y_dim;
355                          if ((eparam->framerate - (int)eparam->framerate) == 0)                          if ((eparam->framerate - (int) eparam->framerate) == 0) {
                         {  
356                                  xparam.fincr = 1;                                  xparam.fincr = 1;
357                                  xparam.fbase = (int)eparam->framerate;                                  xparam.fbase = (int)eparam->framerate;
358                          }                          } else {
                         else  
                         {  
359                                  xparam.fincr = FRAMERATE_INCR;                                  xparam.fincr = FRAMERATE_INCR;
360                                  xparam.fbase = (int)(FRAMERATE_INCR * eparam->framerate);                                  xparam.fbase = (int)(FRAMERATE_INCR * eparam->framerate);
361                          }                          }
# Line 354  Line 366 
366                          xparam.min_quantizer = eparam->min_quantizer;                          xparam.min_quantizer = eparam->min_quantizer;
367                          xparam.max_quantizer = eparam->max_quantizer;                          xparam.max_quantizer = eparam->max_quantizer;
368                          xparam.max_key_interval = eparam->max_key_interval;                          xparam.max_key_interval = eparam->max_key_interval;
                         quality = eparam->quality;  
369    
370                            xparam.global = 0;
371                            xparam.max_bframes = -1;        /* use "original" IP-frame encoder */
372                            xparam.bquant_ratio = 200;
373                            xparam.frame_drop_ratio = 0;    /* dont drop frames */
374    
375                            /* Create the encoder session */
376                          xerr = encoder_create(&xparam);                          xerr = encoder_create(&xparam);
377    
378                          eparam->handle = xparam.handle;                          eparam->handle = xparam.handle;
379    
380                            /* Create an encoder instance in the chainlist */
381                            if ((ecur = einst_find(xparam.handle)) == NULL) {
382                                    ecur = einst_add(xparam.handle);
383    
384                                    if (ecur == NULL) {
385                                            encoder_destroy((Encoder *) xparam.handle);
386                                            return ENC_MEMORY;
387                                    }
388    
389                            }
390    
391                            ecur->quality = eparam->quality;
392                            if (ecur->quality < 0)
393                                    ecur->quality = 0;
394                            if (ecur->quality > 6)
395                                    ecur->quality = 6;
396    
397                          break;                          break;
398                  }                  }
399    
400          case ENC_OPT_RELEASE :          case ENC_OPT_RELEASE :
401                  {                  {
402                            EINST *ecur;
403    
404                            if ((ecur = einst_find(handle)) == NULL) {
405                                    return ENC_FAIL;
406                            }
407    
408                            einst_remove(handle);
409                          xerr = encoder_destroy((Encoder *) handle);                          xerr = encoder_destroy((Encoder *) handle);
410    
411                          break;                          break;
412                  }                  }
413    
414          case ENC_OPT_ENCODE :          case ENC_OPT_ENCODE :
415          case ENC_OPT_ENCODE_VBR :          case ENC_OPT_ENCODE_VBR :
416                  {                  {
417                            EINST *ecur;
418    
419                          ENC_FRAME * eframe = (ENC_FRAME *)param1;                          ENC_FRAME * eframe = (ENC_FRAME *)param1;
420                          ENC_RESULT * eresult = (ENC_RESULT *)param2;                          ENC_RESULT * eresult = (ENC_RESULT *)param2;
421                          XVID_ENC_FRAME xframe;                          XVID_ENC_FRAME xframe;
422                          XVID_ENC_STATS xstats;                          XVID_ENC_STATS xstats;
423    
424                            if ((ecur = einst_find(handle)) == NULL) {
425                                    return ENC_FAIL;
426                            }
427    
428                            /* Copy the divx4 info into the xvid structure */
429                          xframe.bitstream = eframe->bitstream;                          xframe.bitstream = eframe->bitstream;
430                          xframe.length = eframe->length;                          xframe.length = eframe->length;
431                            xframe.motion = divx4_motion_presets[ecur->quality];
432                          xframe.general = XVID_HALFPEL | XVID_H263QUANT;                          xframe.general = divx4_general_presets[ecur->quality];
   
                         if(quality > 3)  
                                 xframe.general |= XVID_INTER4V;  
   
                         xframe.motion = divx4_motion_presets[quality];  
433    
434                          xframe.image = eframe->image;                          xframe.image = eframe->image;
435                          switch (eframe->colorspace)                          xframe.colorspace = xvid_to_opendivx_enc_csp(eframe->colorspace);
                         {  
                         case ENC_CSP_RGB24 :  
                                 xframe.colorspace = XVID_CSP_VFLIP | XVID_CSP_RGB24;  
                                 break;  
                         case ENC_CSP_YV12 :  
                                 xframe.colorspace = XVID_CSP_YV12;  
                                 break;  
                         case ENC_CSP_YUY2 :  
                                 xframe.colorspace = XVID_CSP_YUY2;  
                                 break;  
                         case ENC_CSP_UYVY :  
                                 xframe.colorspace = XVID_CSP_UYVY;  
                                 break;  
                         case ENC_CSP_I420 :  
                                 xframe.colorspace = XVID_CSP_I420;  
                                 break;  
                         }  
436    
437                          if (opt == ENC_OPT_ENCODE_VBR)                          if (opt == ENC_OPT_ENCODE_VBR) {
                         {  
438                                  xframe.intra = eframe->intra;                                  xframe.intra = eframe->intra;
439                                  xframe.quant = eframe->quant;                                  xframe.quant = eframe->quant;
440                          }                          } else {
                         else  
                         {  
441                                  xframe.intra = -1;                                  xframe.intra = -1;
442                                  xframe.quant = 0;                                  xframe.quant = 0;
443                          }                          }
444    
445                          xerr = encoder_encode((Encoder *) handle, &xframe, (eresult ? &xstats : NULL) );                          /* Encode the frame */
446                            xerr =
447                                    encoder_encode((Encoder *) handle, &xframe,
448                                                               (eresult ? &xstats : NULL));
449    
450                          if (eresult)                          /* Copy back the xvid structure to the divx4 one */
451                          {                          if (eresult) {
452                                  eresult->is_key_frame = xframe.intra;                                  eresult->is_key_frame = xframe.intra;
453                                  eresult->quantizer = xstats.quant;                                  eresult->quantizer = xstats.quant;
454                                  eresult->total_bits = xframe.length * 8;                                  eresult->total_bits = xframe.length * 8;
455                                  eresult->motion_bits = xstats.hlength * 8;                                  eresult->motion_bits = xstats.hlength * 8;
456                                  eresult->texture_bits = eresult->total_bits - eresult->motion_bits;                                  eresult->texture_bits =
457                                            eresult->total_bits - eresult->motion_bits;
458                          }                          }
459    
460                          eframe->length = xframe.length;                          eframe->length = xframe.length;
# Line 438  Line 466 
466                  return ENC_FAIL;                  return ENC_FAIL;
467          }          }
468    
469          switch(xerr)          /* XviD Error code  -> Divx4 error code */
470          {          switch (xerr) {
471          case XVID_ERR_OK : return ENC_OK;          case XVID_ERR_OK:
472          case XVID_ERR_MEMORY : return ENC_MEMORY;                  return ENC_OK;
473          case XVID_ERR_FORMAT : return ENC_BAD_FORMAT;          case XVID_ERR_MEMORY:
474          default : // case XVID_ERR_FAIL :                  return ENC_MEMORY;
475            case XVID_ERR_FORMAT:
476                    return ENC_BAD_FORMAT;
477            default:
478                  return ENC_FAIL;                  return ENC_FAIL;
479          }          }
480  }  }
481    
482    /**************************************************************************
483     * Local Functions
484     *************************************************************************/
485    
486    /***************************************
487     * DINST chainlist helper functions    *
488     ***************************************/
489    
490    /* Find an element in the chainlist according to its key value */
491    static DINST *
492    dinst_find(unsigned long key)
493    {
494            DINST *dcur = dhead;
495    
496            while (dcur) {
497                    if (dcur->key == key) {
498                            return dcur;
499                    }
500                    dcur = dcur->next;
501            }
502    
503            return NULL;
504    }
505    
506    
507    /* Add an element to the chainlist */
508    static DINST *
509    dinst_add(unsigned long key)
510    {
511            DINST *dnext = dhead;
512    
513            dhead = malloc(sizeof(DINST));
514            if (dhead == NULL) {
515                    dhead = dnext;
516                    return NULL;
517            }
518    
519            dhead->key = key;
520            dhead->next = dnext;
521    
522            return dhead;
523    }
524    
525    
526    /* Remove an elmement from the chainlist */
527    static void
528    dinst_remove(unsigned long key)
529    {
530            DINST *dcur = dhead;
531    
532            if (dhead == NULL) {
533                    return;
534            }
535    
536            if (dcur->key == key) {
537                    dhead = dcur->next;
538                    free(dcur);
539                    return;
540            }
541    
542            while (dcur->next) {
543                    if (dcur->next->key == key) {
544                            DINST *tmp = dcur->next;
545    
546                            dcur->next = tmp->next;
547                            free(tmp);
548                            return;
549                    }
550                    dcur = dcur->next;
551            }
552    }
553    
554    
555    /***************************************
556     * EINST chainlist helper functions    *
557     ***************************************/
558    
559    /* Find an element in the chainlist according to its handle */
560    static EINST *
561    einst_find(void *handle)
562    {
563            EINST *ecur = ehead;
564    
565            while (ecur) {
566                    if (ecur->handle == handle) {
567                            return ecur;
568                    }
569                    ecur = ecur->next;
570            }
571    
572            return NULL;
573    }
574    
575    
576    /* Add an element to the chainlist */
577    static EINST *
578    einst_add(void *handle)
579    {
580            EINST *enext = ehead;
581    
582            ehead = malloc(sizeof(EINST));
583            if (ehead == NULL) {
584                    ehead = enext;
585                    return NULL;
586            }
587    
588            ehead->handle = handle;
589            ehead->next = enext;
590    
591            return ehead;
592    }
593    
594    
595    /* Remove an elmement from the chainlist */
596    static void
597    einst_remove(void *handle)
598    {
599            EINST *ecur = ehead;
600    
601            if (ehead == NULL) {
602                    return;
603            }
604    
605            if (ecur->handle == handle) {
606                    ehead = ecur->next;
607                    free(ecur);
608                    return;
609            }
610    
611            while (ecur->next) {
612                    if (ecur->next->handle == handle) {
613                            EINST *tmp = ecur->next;
614    
615                            ecur->next = tmp->next;
616                            free(tmp);
617                            return;
618                    }
619                    ecur = ecur->next;
620            }
621    }
622    
623    /***************************************
624     * Colorspace code converter           *
625     ***************************************/
626    
627    static int
628    xvid_to_opendivx_dec_csp(int csp)
629    {
630    
631            switch (csp) {
632            case DEC_YV12:
633                    return XVID_CSP_YV12;
634            case DEC_420:
635                    return XVID_CSP_I420;
636            case DEC_YUY2:
637                    return XVID_CSP_YUY2;
638            case DEC_UYVY:
639                    return XVID_CSP_UYVY;
640            case DEC_RGB32:
641                    return XVID_CSP_VFLIP | XVID_CSP_RGB32;
642            case DEC_RGB24:
643                    return XVID_CSP_VFLIP | XVID_CSP_RGB24;
644            case DEC_RGB565:
645                    return XVID_CSP_VFLIP | XVID_CSP_RGB565;
646            case DEC_RGB555:
647                    return XVID_CSP_VFLIP | XVID_CSP_RGB555;
648            case DEC_RGB32_INV:
649                    return XVID_CSP_RGB32;
650            case DEC_RGB24_INV:
651                    return XVID_CSP_RGB24;
652            case DEC_RGB565_INV:
653                    return XVID_CSP_RGB565;
654            case DEC_RGB555_INV:
655                    return XVID_CSP_RGB555;
656            case DEC_USER:
657                    return XVID_CSP_USER;
658            default:
659                    return -1;
660            }
661    }
662    
663    static int
664    xvid_to_opendivx_enc_csp(int csp)
665    {
666    
667            switch (csp) {
668            case ENC_CSP_RGB24:
669                    return XVID_CSP_VFLIP | XVID_CSP_RGB24;
670            case ENC_CSP_YV12:
671                    return XVID_CSP_YV12;
672            case ENC_CSP_YUY2:
673                    return XVID_CSP_YUY2;
674            case ENC_CSP_UYVY:
675                    return XVID_CSP_UYVY;
676            case ENC_CSP_I420:
677                    return XVID_CSP_I420;
678            default:
679                    return -1;
680            }
681    }

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.16.2.2

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4