annotate libmpcodecs/vd_odivx.c @ 18801:f17474882196

prevent a buffer overflow to occur at teardown
author ben
date Fri, 23 Jun 2006 22:23:07 +0000
parents a1807995e2ab
children 1268b2346234
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
1 #include <stdio.h>
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
2 #include <stdlib.h>
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
3 #include <assert.h>
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
4
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
5 #include "config.h"
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
6 #include "mp_msg.h"
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
7 #include "help_mp.h"
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
8
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
9 #include "vd_internal.h"
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
10
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
11 static vd_info_t info = {
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
12 #ifdef NEW_DECORE
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
13 #ifdef DECORE_DIVX5
9300
32be26de0d7c cleanup detection of various divx4 versions/alternatives
arpi
parents: 8040
diff changeset
14 "DivX5Linux lib (odivx compat.)",
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
15 #else
9300
32be26de0d7c cleanup detection of various divx4 versions/alternatives
arpi
parents: 8040
diff changeset
16 #ifdef DECORE_XVID
32be26de0d7c cleanup detection of various divx4 versions/alternatives
arpi
parents: 8040
diff changeset
17 "XviD lib (odivx compat.)",
32be26de0d7c cleanup detection of various divx4 versions/alternatives
arpi
parents: 8040
diff changeset
18 #else
32be26de0d7c cleanup detection of various divx4 versions/alternatives
arpi
parents: 8040
diff changeset
19 "DivX4Linux lib (odivx compat.)",
32be26de0d7c cleanup detection of various divx4 versions/alternatives
arpi
parents: 8040
diff changeset
20 #endif
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
21 #endif
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
22 #else
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
23 "Opendivx 0.48 codec",
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
24 #endif
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
25 "odivx",
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
26 "A'rpi",
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
27 #ifdef NEW_DECORE
9300
32be26de0d7c cleanup detection of various divx4 versions/alternatives
arpi
parents: 8040
diff changeset
28 #ifdef DECORE_XVID
32be26de0d7c cleanup detection of various divx4 versions/alternatives
arpi
parents: 8040
diff changeset
29 "http://www.xvid.com",
32be26de0d7c cleanup detection of various divx4 versions/alternatives
arpi
parents: 8040
diff changeset
30 #else
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
31 "http://www.divx.com",
9300
32be26de0d7c cleanup detection of various divx4 versions/alternatives
arpi
parents: 8040
diff changeset
32 #endif
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
33 #else
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
34 "http://www.projectmayo.org",
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
35 #endif
7191
1eadce15446c -afm/-vfm help implemenetd, some cosmetics of ad/vd codec names/comments
arpi
parents: 7180
diff changeset
36 #ifdef NEW_DECORE
1eadce15446c -afm/-vfm help implemenetd, some cosmetics of ad/vd codec names/comments
arpi
parents: 7180
diff changeset
37 "native binary codec"
1eadce15446c -afm/-vfm help implemenetd, some cosmetics of ad/vd codec names/comments
arpi
parents: 7180
diff changeset
38 #else
1eadce15446c -afm/-vfm help implemenetd, some cosmetics of ad/vd codec names/comments
arpi
parents: 7180
diff changeset
39 "native codec"
1eadce15446c -afm/-vfm help implemenetd, some cosmetics of ad/vd codec names/comments
arpi
parents: 7180
diff changeset
40 #endif
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
41 };
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
42
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
43 LIBVD_EXTERN(odivx)
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
44
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
45 #ifndef NEW_DECORE
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
46 #include "opendivx/decore.h"
5011
d53725339d5d postprocess.h requires for GET_PP_QUALITY_MAX - patch by Fredrik Kuivinen
arpi
parents: 5003
diff changeset
47 #include "postproc/postprocess.h"
9300
32be26de0d7c cleanup detection of various divx4 versions/alternatives
arpi
parents: 8040
diff changeset
48 #elif DECORE_XVID
6701
522713337297 Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents: 5247
diff changeset
49 #include <divx4.h>
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
50 #else
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
51 #include <decore.h>
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
52 #endif
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
53
10252
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
54 #ifndef DECORE_VERSION
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
55 #define DECORE_VERSION 0
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
56 #endif
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
57
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
58 #if DECORE_VERSION >= 20021112
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
59 static void* dec_handle = NULL;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
60 #endif
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
61
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
62 //**************************************************************************//
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
63 // The OpenDivX stuff:
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
64 //**************************************************************************//
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
65
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
66 #ifndef NEW_DECORE
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
67
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
68 static unsigned char *opendivx_src[3];
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
69 static int opendivx_stride[3];
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
70
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
71 // callback, the opendivx decoder calls this for each frame:
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
72 void convert_linux(unsigned char *puc_y, int stride_y,
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
73 unsigned char *puc_u, unsigned char *puc_v, int stride_uv,
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
74 unsigned char *bmp, int width_y, int height_y){
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
75
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
76 // printf("convert_yuv called %dx%d stride: %d,%d\n",width_y,height_y,stride_y,stride_uv);
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
77
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
78 opendivx_src[0]=puc_y;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
79 opendivx_src[1]=puc_u;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
80 opendivx_src[2]=puc_v;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
81
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
82 opendivx_stride[0]=stride_y;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
83 opendivx_stride[1]=stride_uv;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
84 opendivx_stride[2]=stride_uv;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
85 }
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
86 #endif
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
87
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
88
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
89 // to set/get/query special features/parameters
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
90 static int control(sh_video_t *sh,int cmd,void* arg,...){
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
91 switch(cmd){
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
92 case VDCTRL_QUERY_MAX_PP_LEVEL:
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
93 #ifdef NEW_DECORE
10252
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
94 #if DECORE_VERSION >= 20021112
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
95 return 6; // divx4linux >= 5.0.5 -> 0..60
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
96 #else
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
97 return 10; // divx4linux < 5.0.5 -> 0..100
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
98 #endif
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
99 #else
8040
5241f95b5ec4 cleanup
michael
parents: 7191
diff changeset
100 return PP_QUALITY_MAX; // for opendivx
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
101 #endif
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
102 case VDCTRL_SET_PP_LEVEL: {
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
103 int quality=*((int*)arg);
10252
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
104 #if DECORE_VERSION >= 20021112
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
105 int32_t iInstruction, iPostproc;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
106 if(quality<0 || quality>6) quality=6;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
107 iInstruction = DEC_ADJ_POSTPROCESSING | DEC_ADJ_SET;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
108 iPostproc = quality*10;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
109 decore(dec_handle, DEC_OPT_ADJUST, &iInstruction, &iPostproc);
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
110 #else
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
111 DEC_SET dec_set;
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
112 #ifdef NEW_DECORE
10252
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
113 if(quality<0 || quality>10) quality=10;
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
114 dec_set.postproc_level=quality*10;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
115 #else
8040
5241f95b5ec4 cleanup
michael
parents: 7191
diff changeset
116 if(quality<0 || quality>PP_QUALITY_MAX) quality=PP_QUALITY_MAX;
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
117 dec_set.postproc_level=getPpModeForQuality(quality);
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
118 #endif
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
119 decore(0x123,DEC_OPT_SETPP,&dec_set,NULL);
10252
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
120 #endif
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
121 return CONTROL_OK;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
122 }
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
123
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
124 }
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
125
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
126 return CONTROL_UNKNOWN;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
127 }
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
128
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
129 // init driver
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
130 static int init(sh_video_t *sh){
10252
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
131 #if DECORE_VERSION >= 20021112
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
132 DEC_INIT dec_init;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
133 int iSize=sizeof(DivXBitmapInfoHeader);
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
134 DivXBitmapInfoHeader* pbi=malloc(iSize);
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
135 int32_t iInstruction;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
136
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
137 memset(&dec_init, 0, sizeof(dec_init));
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
138 memset(pbi, 0, iSize);
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
139
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
140 switch(sh->format) {
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
141 case mmioFOURCC('D','I','V','3'):
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
142 dec_init.codec_version = 311;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
143 break;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
144 case mmioFOURCC('D','I','V','X'):
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
145 dec_init.codec_version = 412;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
146 break;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
147 case mmioFOURCC('D','X','5','0'):
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
148 default: // Fallback to DivX 5 behaviour
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
149 dec_init.codec_version = 500;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
150 }
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
151
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
152 // no smoothing of the CPU load
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
153 dec_init.smooth_playback = 0;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
154
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
155 pbi->biSize=iSize;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
156
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
157 pbi->biCompression=mmioFOURCC('U','S','E','R');
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
158
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
159 pbi->biWidth = sh->disp_w;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
160 pbi->biHeight = sh->disp_h;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
161
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
162 decore(&dec_handle, DEC_OPT_INIT, &dec_init, NULL);
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
163 decore(dec_handle, DEC_OPT_SETOUT, pbi, NULL);
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
164
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
165 iInstruction = DEC_ADJ_POSTPROCESSING | DEC_ADJ_SET;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
166 decore(dec_handle, DEC_OPT_ADJUST, &iInstruction, &divx_quality);
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
167
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
168 free(pbi);
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
169 #else // DECORE_VERSION < 20021112
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
170 DEC_PARAM dec_param;
5003
88481d4b9e0e divx_quality and equalizer support done
arpi
parents: 4997
diff changeset
171 DEC_SET dec_set;
5173
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
172
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
173 #ifndef NEW_DECORE
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
174 if(sh->format==mmioFOURCC('D','I','V','3')){
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
175 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"DivX 3.x not supported by opendivx decore - it requires divx4linux\n");
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
176 return 0; // not supported
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
177 }
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
178 #endif
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
179 #ifndef DECORE_DIVX5
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
180 if(sh->format==mmioFOURCC('D','X','5','0')){
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
181 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"DivX 5.00 not supported by divx4linux decore - it requires divx5linux\n");
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
182 return 0; // not supported
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
183 }
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
184 #endif
4f86aad49530 decore version check for divx3 and divx5
arpi
parents: 5124
diff changeset
185
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
186 memset(&dec_param,0,sizeof(dec_param));
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
187 #ifdef NEW_DECORE
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
188 dec_param.output_format=DEC_USER;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
189 #else
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
190 dec_param.color_depth = 32;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
191 #endif
4997
5efa42dd4cd8 divx5 support into libmpcodecs (untested)
atmos4
parents: 4986
diff changeset
192 #ifdef DECORE_DIVX5
5247
b68774024821 Im proved Build Version selection for DivX 5.
atmos4
parents: 5173
diff changeset
193 switch(sh->format) {
b68774024821 Im proved Build Version selection for DivX 5.
atmos4
parents: 5173
diff changeset
194 case mmioFOURCC('D','I','V','3'):
b68774024821 Im proved Build Version selection for DivX 5.
atmos4
parents: 5173
diff changeset
195 dec_param.codec_version = 311;
b68774024821 Im proved Build Version selection for DivX 5.
atmos4
parents: 5173
diff changeset
196 break;
b68774024821 Im proved Build Version selection for DivX 5.
atmos4
parents: 5173
diff changeset
197 case mmioFOURCC('D','I','V','X'):
b68774024821 Im proved Build Version selection for DivX 5.
atmos4
parents: 5173
diff changeset
198 dec_param.codec_version = 400;
b68774024821 Im proved Build Version selection for DivX 5.
atmos4
parents: 5173
diff changeset
199 break;
b68774024821 Im proved Build Version selection for DivX 5.
atmos4
parents: 5173
diff changeset
200 case mmioFOURCC('D','X','5','0'):
b68774024821 Im proved Build Version selection for DivX 5.
atmos4
parents: 5173
diff changeset
201 default: // Fallback to DivX 5 behaviour
b68774024821 Im proved Build Version selection for DivX 5.
atmos4
parents: 5173
diff changeset
202 dec_param.codec_version = 500;
b68774024821 Im proved Build Version selection for DivX 5.
atmos4
parents: 5173
diff changeset
203 }
4997
5efa42dd4cd8 divx5 support into libmpcodecs (untested)
atmos4
parents: 4986
diff changeset
204 dec_param.build_number = 0;
5efa42dd4cd8 divx5 support into libmpcodecs (untested)
atmos4
parents: 4986
diff changeset
205 #endif
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
206 dec_param.x_dim = sh->disp_w;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
207 dec_param.y_dim = sh->disp_h;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
208 decore(0x123, DEC_OPT_INIT, &dec_param, NULL);
5003
88481d4b9e0e divx_quality and equalizer support done
arpi
parents: 4997
diff changeset
209
88481d4b9e0e divx_quality and equalizer support done
arpi
parents: 4997
diff changeset
210 dec_set.postproc_level = divx_quality;
88481d4b9e0e divx_quality and equalizer support done
arpi
parents: 4997
diff changeset
211 decore(0x123, DEC_OPT_SETPP, &dec_set, NULL);
10252
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
212 #endif // DECORE_VERSION
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
213
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
214 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: OpenDivX video codec init OK!\n");
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
215
5124
3dcbf67c0de0 handle error from mpcodecs_config_vo()
arpi
parents: 5037
diff changeset
216 return mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YV12);
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
217 }
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
218
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
219 // uninit driver
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
220 static void uninit(sh_video_t *sh){
10252
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
221 #if DECORE_VERSION >= 20021112
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
222 decore(dec_handle, DEC_OPT_RELEASE, NULL, NULL);
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
223 dec_handle = NULL;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
224 #else
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
225 decore(0x123,DEC_OPT_RELEASE,NULL,NULL);
10252
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
226 #endif
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
227 }
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
228
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
229 //mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, int w, int h);
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
230
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
231 // decode a frame
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
232 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
233 mp_image_t* mpi;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
234 DEC_FRAME dec_frame;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
235 #ifdef NEW_DECORE
10252
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
236 #if DECORE_VERSION >= 20021112
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
237 DEC_FRAME_INFO dec_pic;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
238 #else
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
239 DEC_PICTURE dec_pic;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
240 #endif
10252
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
241 #endif
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
242
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
243 if(len<=0) return NULL; // skipped frame
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
244
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
245 dec_frame.length = len;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
246 dec_frame.bitstream = data;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
247 dec_frame.render_flag = (flags&3)?0:1;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
248
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
249 #ifdef NEW_DECORE
10252
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
250 #if DECORE_VERSION >= 20021112
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
251 dec_frame.stride=sh->disp_w;
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
252 decore(dec_handle, DEC_OPT_FRAME, &dec_frame, &dec_pic);
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
253 #else
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
254 dec_frame.bmp=&dec_pic;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
255 dec_pic.y=dec_pic.u=dec_pic.v=NULL;
5037
0ef48d850bc9 hopefully fixed divx5 header + xvid conflict
arpi
parents: 5011
diff changeset
256 #ifndef DEC_OPT_FRAME_311
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
257 decore(0x123, DEC_OPT_FRAME, &dec_frame, NULL);
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
258 #else
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
259 decore(0x123, (sh->format==mmioFOURCC('D','I','V','3'))?DEC_OPT_FRAME_311:DEC_OPT_FRAME, &dec_frame, NULL);
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
260 #endif
10252
d275152390ee I've found some time to implement the encoding support for the new
arpi
parents: 9300
diff changeset
261 #endif
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
262 #else
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
263 // opendivx:
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
264 opendivx_src[0]=NULL;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
265 decore(0x123, 0, &dec_frame, NULL);
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
266 #endif
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
267
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
268 if(flags&3) return NULL; // framedrop
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
269
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
270 #ifdef NEW_DECORE
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
271 if(!dec_pic.y) return NULL; // bad frame
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
272 #else
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
273 if(!opendivx_src[0]) return NULL; // bad frame
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
274 #endif
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
275
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
276 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, MP_IMGFLAG_PRESERVE,
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
277 sh->disp_w, sh->disp_h);
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
278 if(!mpi) return NULL;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
279
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
280 #ifdef NEW_DECORE
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
281 mpi->planes[0]=dec_pic.y;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
282 mpi->planes[1]=dec_pic.u;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
283 mpi->planes[2]=dec_pic.v;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
284 mpi->stride[0]=dec_pic.stride_y;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
285 mpi->stride[1]=mpi->stride[2]=dec_pic.stride_uv;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
286 #else
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
287 mpi->planes[0]=opendivx_src[0];
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
288 mpi->planes[1]=opendivx_src[1];
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
289 mpi->planes[2]=opendivx_src[2];
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
290 mpi->stride[0]=opendivx_stride[0];
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
291 mpi->stride[1]=opendivx_stride[1];
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
292 mpi->stride[2]=opendivx_stride[2];
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
293 #endif
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
294
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
295 return mpi;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents:
diff changeset
296 }