annotate libmpcodecs/vd_odivx.c @ 14652:056674e34c1b

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