7 #include "vd_internal.h"
8 #include "libavutil/lzo.h"
10 #define MOD_NAME "DecLZO"
12 static vd_info_t info
= {
13 "LZO compressed Video",
16 "Transcode development team <http://www.theorie.physik.uni-goettingen.de/~ostreich/transcode/>",
17 "based on liblzo: http://www.oberhumer.com/opensource/lzo/"
28 // to set/get/query special features/parameters
29 static int control (sh_video_t
*sh
, int cmd
, void* arg
, ...)
31 lzo_context_t
*priv
= sh
->context
;
33 case VDCTRL_QUERY_FORMAT
:
34 if (*(int *)arg
== priv
->codec
) return CONTROL_TRUE
;
37 return CONTROL_UNKNOWN
;
42 static int init(sh_video_t
*sh
)
46 if (sh
->bih
->biSizeImage
<= 0) {
47 mp_msg (MSGT_DECVIDEO
, MSGL_ERR
, "[%s] Invalid frame size\n", MOD_NAME
);
51 priv
= malloc(sizeof(lzo_context_t
));
54 mp_msg (MSGT_DECVIDEO
, MSGL_ERR
, "[%s] memory allocation failed\n", MOD_NAME
);
57 priv
->bufsz
= sh
->bih
->biSizeImage
;
58 priv
->buffer
= malloc(priv
->bufsz
+ AV_LZO_OUTPUT_PADDING
);
66 static void uninit(sh_video_t
*sh
)
68 lzo_context_t
*priv
= sh
->context
;
80 static mp_image_t
* decode(sh_video_t
*sh
,void* data
,int len
,int flags
)
84 lzo_context_t
*priv
= sh
->context
;
88 return NULL
; // skipped frame
91 r
= av_lzo1x_decode(priv
->buffer
, &w
, data
, &len
);
93 /* this should NEVER happen */
94 mp_msg (MSGT_DECVIDEO
, MSGL_ERR
,
95 "[%s] internal error - decompression failed: %d\n", MOD_NAME
, r
);
99 if (priv
->codec
== -1) {
100 // detect RGB24 vs. YV12 via decoded size
101 mp_msg (MSGT_DECVIDEO
, MSGL_V
, "[%s] 2 depth %d, format %d data %p len (%d) (%d)\n",
102 MOD_NAME
, sh
->bih
->biBitCount
, sh
->format
, data
, len
, sh
->bih
->biSizeImage
106 priv
->codec
= IMGFMT_BGR24
;
107 mp_msg (MSGT_DECVIDEO
, MSGL_V
, "[%s] codec choosen is BGR24\n", MOD_NAME
);
108 } else if (w
== (sh
->bih
->biSizeImage
)/2) {
109 priv
->codec
= IMGFMT_YV12
;
110 mp_msg (MSGT_DECVIDEO
, MSGL_V
, "[%s] codec choosen is YV12\n", MOD_NAME
);
113 mp_msg(MSGT_DECVIDEO
,MSGL_ERR
,"[%s] Unsupported out_fmt\n", MOD_NAME
);
117 if(!mpcodecs_config_vo(sh
,sh
->disp_w
,sh
->disp_h
,priv
->codec
)) {
123 mpi
= mpcodecs_get_image(sh
, MP_IMGTYPE_EXPORT
, 0,
124 sh
->disp_w
, sh
->disp_h
);
128 mp_msg (MSGT_DECVIDEO
, MSGL_ERR
, "[%s] mpcodecs_get_image failed\n", MOD_NAME
);
132 mpi
->planes
[0] = priv
->buffer
;
133 if (priv
->codec
== IMGFMT_BGR24
)
134 mpi
->stride
[0] = 3 * sh
->disp_w
;
136 mpi
->stride
[0] = sh
->disp_w
;
137 mpi
->planes
[2] = priv
->buffer
+ sh
->disp_w
*sh
->disp_h
;
138 mpi
->stride
[2] = sh
->disp_w
/ 2;
139 mpi
->planes
[1] = priv
->buffer
+ sh
->disp_w
*sh
->disp_h
*5/4;
140 mpi
->stride
[1] = sh
->disp_w
/ 2;
143 mp_msg (MSGT_DECVIDEO
, MSGL_DBG2
,
144 "[%s] decompressed %lu bytes into %lu bytes\n", MOD_NAME
,
145 (long) len
, (long)w
);