1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
|
/*
* Copyright (C) 2001 the xine project
*
* This file is part of xine, a unix video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* xine is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
* $Id: xine_decoder.c,v 1.3 2001/10/15 16:13:23 jkeil Exp $
*
* xine decoder plugin using divx4
*
* by Harm van der Heijden <hrm@users.sourceforge.net>
* Based on the ffmpeg xine plugin, with ideas from avifile's
* (http://avifile.sourceforge.net) divx4 plugin.
*
* Requires the divxdecore library. Find it at http://www.divx.com or
* http://avifile.sourceforge.net
* This plugin may or may not work with the open source codec OpenDivx.
*
* This is My First Plugin (tm). Read the source comments for hairy details.
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <stdio.h>
#include <inttypes.h>
#include <string.h>
#include <dlfcn.h>
#include "xine_internal.h"
#include "cpu_accel.h"
#include "video_out.h"
#include "buffer.h"
#include "metronom.h"
#include "decore-if.h"
/* now this is ripped of wine's vfw.h */
typedef struct {
long biSize;
long biWidth;
long biHeight;
short biPlanes;
short biBitCount;
long biCompression;
long biSizeImage;
long biXPelsPerMeter;
long biYPelsPerMeter;
long biClrUsed;
long biClrImportant;
} BITMAPINFOHEADER;
typedef struct divx4_decoder_s {
video_decoder_t video_decoder;
vo_instance_t *video_out;
int video_step;
int decoder_ok;
BITMAPINFOHEADER bih;
long biWidth;
long biHeight;
unsigned char buf[128*1024];
int size;
decoreFunc decore; /* ptr to decore function in libdivxdecore */
/* whether to decode MSMPEG4_V3 format
(aka divx ;-) and divx 3.11-- thank god they dropped the smileys
with divx4)
*/
int use_311_compat;
/* postprocessing level; currently valid values 0-6 (internally 0-100)
set by divx4_postproc in .xinerc */
int postproc;
/* what output format we ask of decore()
supported at the moment:
DEC_YV12, copied straight into image buffer by decore(),
fast but perhaps risky.
DEC_USER, decore() returns pointers to internal y,u,v buffers,
and we copy the data ourselves. Not optimised, so probably slower.
It seems that OpenDivx likes this better. */
int decore_format;
/* can we handle 311 format? No easy way to find out (divx4linux can,
OpenDivx cannot, so the user can set it in .xinerc. If 0, can_handle
only returns MPEG4, yielding 311 to ffmpeg */
int can_handle_311;
} divx4_decoder_t;
static unsigned long str2ulong(void *data) {
unsigned char *str = data;
return ( str[0] | (str[1]<<8) | (str[2]<<16) | (str[3]<<24) );
}
static char* decore_retval(int ret)
{
switch (ret) {
case DEC_OK: return "DEC_OK";
case DEC_MEMORY: return "DEC_MEMORY";
case DEC_BAD_FORMAT: return "DEC_BAD_FORMAT";
case DEC_EXIT: return "DEC_EXIT";
}
return "[Unknown code]";
}
static int divx4_can_handle (video_decoder_t *this_gen, int buf_type) {
divx4_decoder_t *this = (divx4_decoder_t *) this_gen;
buf_type &= 0xFFFF0000;
/* divx4 currently does not support MSMPEG4 v1/v2 */
return ( (buf_type == BUF_VIDEO_MSMPEG4_V3 && this->can_handle_311) ||
/* buf_type == BUF_VIDEO_MSMPEG4_V12 || */
buf_type == BUF_VIDEO_MPEG4);
}
/* copied verbatim from ffmpeg plugin */
static void divx4_init (video_decoder_t *this_gen, vo_instance_t *video_out) {
divx4_decoder_t *this = (divx4_decoder_t *) this_gen;
this->video_out = video_out;
this->decoder_ok = 0;
}
static void divx4_decode_data (video_decoder_t *this_gen, buf_element_t *buf) {
DEC_PARAM param; /* for init */
DEC_SET setpp; /* for setting postproc level */
DEC_FRAME frame; /* for getting a frame */
DEC_PICTURE pict;/* contains ptrs to the decoders internal yuv buffers */
int ret;
divx4_decoder_t *this = (divx4_decoder_t *) this_gen;
if (buf->decoder_info[0] == 0) {
int codec_type;
memcpy ( &this->bih, buf->content, sizeof (BITMAPINFOHEADER));
this->biWidth = str2ulong(&this->bih.biWidth);
this->biHeight = str2ulong(&this->bih.biHeight);
this->video_step = buf->decoder_info[1];
codec_type = buf->type & 0xFFFF0000;
/* do we need divx 3.11 compatibility mode? */
switch (buf->type & 0xFFFF0000) {
case BUF_VIDEO_MSMPEG4_V12:
case BUF_VIDEO_MSMPEG4_V3:
this->use_311_compat = 1;
break;
case BUF_VIDEO_MPEG4 :
this->use_311_compat = 0;
break;
default:
printf ("divx4: unknown video format (buftype: 0x%08X)\n",
buf->type & 0xFFFF0000);
}
/* setup decoder; inspired by avifile's plugin */
param.x_dim=this->biWidth;
param.y_dim=this->biHeight;
param.time_incr = 15; /* no idea what this does */
/* FIXME: the decoder can also supply RGB data, and my avifile experience
is that it's far preferable over generic yuv conversion. Would this
be interesting for the XShm crowd, lacking a YUV overlay? */
param.output_format=this->decore_format;
memset(¶m.buffers, 0, sizeof(param.buffers));
ret = this->decore((unsigned long)this, DEC_OPT_INIT, ¶m, &this->bih);
if (ret != DEC_OK) {
printf("divx4: decore DEC_OPT_INIT command returned %s.\n", decore_retval(ret));
return;
}
/* multiply postproc level by 10 for internal consumption */
printf("divx4: Setting post processing level to %d (see ~/.xinerc)\n"
"divx4: Valid range 0-6, reduce if you get frame drop\n",
this->postproc);
setpp.postproc_level=this->postproc*10;
ret = this->decore((unsigned long)this, DEC_OPT_SETPP, &setpp, 0);
if (ret != DEC_OK)
{
printf("divx4: decore DEC_OPT_SETPP command returned %s.\n", decore_retval(ret));
/* perhaps not fatal, so we'll continue */
}
this->decoder_ok = 1;
this->video_out->open (this->video_out);
} else if (this->decoder_ok) {
memcpy (&this->buf[this->size], buf->content, buf->size);
this->size += buf->size;
if (buf->decoder_info[0] == 2) { /* what does this mean? */
/* allocate image (taken from ffmpeg plugin) */
vo_frame_t *img;
img = this->video_out->get_frame (this->video_out,
/* this->av_picture.linesize[0], */
this->biWidth,
this->biHeight,
42,
IMGFMT_YV12,
this->video_step,
VO_BOTH_FIELDS);
/*
setup the decode frame parameters, as demonstrated by avifile.
If decore format is DEC_YV12, I assume here that the layout of
base[] is flat, i.e. that base[0], [1] and [2] all point inside the same
contiguous bit of memory. It seems to work for the Xv driver
but I don't not know if this is always acceptable. Use DEC_USER if this
causes problems (configurable via .xinerc). Also, OpenDivx seems to
prefer DEC_USER.
*/
frame.bitstream= (void*)this->buf;
if (this->decore_format == DEC_USER)
frame.bmp=&pict; /* decore will set ptrs to internal y,u&v buffers */
else
frame.bmp=img->base[0]; /* YV12: assume y,u & v buffers are contiguous */
frame.length=this->size;
frame.render_flag=1;
frame.stride=this->biWidth;
if(this->use_311_compat)
ret = this->decore((unsigned long)this, DEC_OPT_FRAME_311, &frame, 0);
else
ret = this->decore((unsigned long)this, DEC_OPT_FRAME, &frame, 0);
if (ret != DEC_OK) {
printf("divx4: decore DEC_OPT_FRAME command returned %s.\n", decore_retval(ret));
img->bad_frame = 1; /* better skip this one */
}
else if (this->decore_format == DEC_USER)
{
/* We need to copy the yuv data from the decoder's internal buffers.
Y size is width*height, U and V width*height/4 */
int i;
int src_offset,dst_offset;
/* shortcut if stride_y equals width */
if (pict.stride_y == img->width) {
memcpy(img->base[0], pict.y, img->width*img->height);
}
else { /* copy line by line */
src_offset=dst_offset = 0;
for (i=0; i<img->height; i++) {
memcpy(img->base[0]+dst_offset, pict.y+src_offset, img->width);
src_offset += pict.stride_y;
dst_offset += img->width;
}
}
/* same for u,v data, but at 1/4 resolution.
FIXME: Weird... I thought YV12 means order y-v-u, yet base[1]
seems to be u and base[2] is v. */
if (pict.stride_uv == img->width>>1) {
memcpy(img->base[1], pict.u, (img->width*img->height)>>2);
memcpy(img->base[2], pict.v, (img->width*img->height)>>2);
}
else {
src_offset=dst_offset = 0;
for (i=0; i<img->height>>1; i++) {
memcpy(img->base[1]+dst_offset, pict.u+src_offset, img->width>>1);
memcpy(img->base[2]+dst_offset, pict.v+src_offset, img->width>>1);
src_offset += pict.stride_uv;
dst_offset += img->width>>1;
}
}
}
/* more video-out voodoo:
some sort of copy operation, looks like. Straight from the ffmpeg
plugin. The XShm driver seems to need it, the Xv one does not. */
if (img->copy && img->bad_frame == 0) {
int height = abs(this->biHeight);
int stride = this->biWidth;
uint8_t* src[3];
src[0] = img->base[0];
src[1] = img->base[1];
src[2] = img->base[2];
while ((height -= 16) >= 0) {
img->copy(img, src);
src[0] += 16 * stride;
src[1] += 4 * stride;
src[2] += 4 * stride;
}
}
/* this again from ffmpeg plugin */
img->PTS = buf->PTS;
img->draw(img);
img->free(img);
this->size = 0;
}
}
}
static void divx4_close (video_decoder_t *this_gen) {
divx4_decoder_t *this = (divx4_decoder_t *) this_gen;
if (this->decoder_ok) {
/* FIXME: this segfaults here
(note: avifile also has the release command commented out;
probably a known 'feature')
this->decore((unsigned long)this, DEC_OPT_RELEASE, 0, 0);*/
this->video_out->close(this->video_out);
this->decoder_ok = 0;
}
}
static char *divx4_get_id(void) {
return "divx4 video decoder";
}
/* This is pretty generic. I took the liberty to increase the
priority over that of libffmpeg :-) */
video_decoder_t *init_video_decoder_plugin (int iface_version, config_values_t *cfg) {
divx4_decoder_t *this ;
char *libdecore_name;
void *libdecore_handle;
decoreFunc libdecore_func = 0;
if (iface_version != 2) {
printf( "divx4: plugin doesn't support plugin API version %d.\n"
"divx4: this means there's a version mismatch between xine and this "
"divx4: decoder plugin.\nInstalling current plugins should help.\n",
iface_version);
return NULL;
}
/* Try to dlopen libdivxdecore, then look for decore function
if it fails, print a message and return 0 so that xine ignores
us from then on. */
libdecore_name = cfg->lookup_str(cfg, "divx4_libdivxdecore", "libdivxdecore.so");
libdecore_handle = dlopen(libdecore_name, RTLD_LAZY);
if (libdecore_handle)
libdecore_func = dlsym(libdecore_handle, "decore");
if (! libdecore_func) {
printf("divx4: could not find decore function in library \"%s\"\n"
"divx4: system returned \"%s\"\n"
"divx4: libdivxdecore unavailable; this plugin will be disabled.\n",
libdecore_name, dlerror());
return NULL;
}
printf("divx4: successfully opened \"%s\"\n", libdecore_name);
this = (divx4_decoder_t *) malloc (sizeof (divx4_decoder_t));
this->video_decoder.interface_version = 2;
this->video_decoder.can_handle = divx4_can_handle;
this->video_decoder.init = divx4_init;
this->video_decoder.decode_data = divx4_decode_data;
this->video_decoder.close = divx4_close;
this->video_decoder.get_identifier = divx4_get_id;
this->video_decoder.priority = cfg->lookup_int(cfg, "divx4_priority", 6);
this->decore = libdecore_func;
this->postproc = cfg->lookup_int(cfg, "divx4_postproc", 3);
this->decore_format = cfg->lookup_int(cfg, "divx4_decoreformat", 1);
this->can_handle_311 = cfg->lookup_int(cfg, "divx4_msmpeg4v3", 1);
this->size = 0;
/* at the moment availabe values are 0-6, but future versions may support
higher levels. Internally, postproc is multiplied by 10 and values
between 0 and 100 are valid */
if (this->postproc > 10) this->postproc=10;
if (this->postproc < 0) this->postproc=0;
/* translate the decore_format value to the internal constant, correct if
an illegal value was given.
This might someday be extended to allow for RGB output from the decoder */
if (this->decore_format == 0) this->decore_format = DEC_YV12;
else if (this->decore_format == 1) this->decore_format = DEC_USER;
else {
printf("divx4: Illegal value %d for divx4_decoreformat, using 1.\n"
"divx4: Valid are 0 (YV12, faster) and 1 (USER, safer). No quality difference.\n",
this->decore_format);
this->decore_format = DEC_USER;
}
return (video_decoder_t *) this;
}
|