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
|
/*
* filter_sdlview.c -- simple preview filter based on SDL.
* (C) 2007-2010 Francesco Romani <fromani at gmail dot com>
*
* This file is part of transcode, a video stream processing tool.
*
* transcode 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.
*
* transcode 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, see <http://www.gnu.org/licenses/>.
*/
#define MOD_NAME "filter_sdlview.so"
#define MOD_VERSION "v1.0.2 (2007-12-08)"
#define MOD_CAP "preview video frames using SDL"
#define MOD_AUTHOR "Francesco Romani"
#define MOD_FEATURES \
TC_MODULE_FEATURE_FILTER|TC_MODULE_FEATURE_VIDEO
#define MOD_FLAGS \
TC_MODULE_FLAG_RECONFIGURABLE
#include <SDL.h>
#include "transcode.h"
#include "filter.h"
#include "aclib/ac.h"
#include "aclib/imgconvert.h"
#include "libtc/libtc.h"
#include "libtc/optstr.h"
#include "libtc/tccodecs.h"
#include "libtc/tcmodule-plugin.h"
/*************************************************************************/
typedef struct sdlprivatedata_ SDLPrivateData;
struct sdlprivatedata_ {
SDL_Surface *surface;
SDL_Overlay *overlay;
SDL_Rect rectangle;
int w, h;
ImageFormat src_fmt;
};
/*************************************************************************/
static const char sdlview_help[] = ""
"Overview:\n"
" preview images to be encoded using SDL. Every internal transcode\n"
" colorspace is supported and dinamically translated into YV12\n"
" (NOT YUV420P), that is the overlay format used by SDL.\n"
" This plugin is intentionally extremely simple: it does preview\n"
" only, and does not support screenshotting, key commands not any\n"
" other feature of pv and preview plugins.\n"
"Options:\n"
" help produces this message\n";
/*************************************************************************/
/* Module interface routines and data. */
/*************************************************************************/
/**
* sdlview_init: Initialize this instance of the module. See
* tcmodule-data.h for function details.
*/
static int sdlview_init(TCModuleInstance *self, uint32_t features)
{
int err = 0;
SDLPrivateData *pd = NULL;
TC_MODULE_SELF_CHECK(self, "init");
TC_MODULE_INIT_CHECK(self, MOD_FEATURES, features);
err = SDL_Init(SDL_INIT_VIDEO);
if (err) {
tc_log_error(MOD_NAME, "SDL initialization failed: %s", SDL_GetError());
return TC_ERROR;
}
pd = tc_malloc(sizeof(SDLPrivateData));
if (pd == NULL) {
tc_log_error(MOD_NAME, "init: out of memory!");
return TC_ERROR;
}
pd->surface = NULL;
pd->overlay = NULL;
pd->w = 0;
pd->h = 0;
self->userdata = pd;
if (verbose) {
tc_log_info(MOD_NAME, "%s %s", MOD_VERSION, MOD_CAP);
}
return TC_OK;
}
/*************************************************************************/
/**
* sdlview_fini: Clean up after this instance of the module. See
* tcmodule-data.h for function details.
*/
static int sdlview_fini(TCModuleInstance *self)
{
TC_MODULE_SELF_CHECK(self, "fini");
SDL_Quit();
tc_free(self->userdata);
self->userdata = NULL;
return TC_OK;
}
/*************************************************************************/
/*
* configure_colorspace: find correct source colorspace, and setup
* module private data accordingly
*
* Parameters:
* pd: module private data to setup
* fmt: internal transcode colorspace format
* verbose: if nonzero, tc_log out operation.
* Return Value:
* TC_ERROR on failure (unknown internal format), TC_OK on success
*/
static int configure_colorspace(SDLPrivateData *pd, int fmt, int verbose)
{
const char *fmt_name = "unknown";
switch (fmt) {
case CODEC_YUV: /* fallthrough */
case TC_CODEC_YUV420P:
pd->src_fmt = IMG_YUV420P;
fmt_name = "YUV420";
break;
case CODEC_YUV422: /* fallthrough */
case TC_CODEC_YUV422P:
pd->src_fmt = IMG_YUV422P;
fmt_name = "YUV422";
break;
case CODEC_RGB: /* fallthrough */
case TC_CODEC_RGB:
pd->src_fmt = IMG_RGB24;
fmt_name = "RGB24";
break;
default:
tc_log_error(MOD_NAME, "unknown colorspace");
return TC_ERROR;
}
if (verbose) {
tc_log_info(MOD_NAME, "colorspace conversion: %s -> YV12",
fmt_name);
}
return TC_OK;
}
/**
* sdlview_configure: Configure this instance of the module. See
* tcmodule-data.h for function details.
*/
static int sdlview_configure(TCModuleInstance *self,
const char *options, vob_t *vob)
{
SDLPrivateData *pd = NULL;
int ret;
TC_MODULE_SELF_CHECK(self, "configure");
pd = self->userdata;
ret = configure_colorspace(pd, vob->im_v_codec, verbose);
if (ret != TC_OK) {
/* failure reason already tc_log()'d out */
return ret;
}
pd->w = vob->ex_v_width;
pd->h = vob->ex_v_height;
SDL_WM_SetCaption("transcode SDL preview", NULL);
pd->surface = SDL_SetVideoMode(pd->w, pd->h, 0, SDL_HWSURFACE);
if (!pd->surface) {
tc_log_error(MOD_NAME, "cannot setup SDL Video Mode: %s",
SDL_GetError());
return TC_ERROR;
}
pd->overlay = SDL_CreateYUVOverlay(pd->w, pd->h,
SDL_YV12_OVERLAY, pd->surface);
if (!pd->overlay) {
tc_log_error(MOD_NAME, "cannot setup SDL YUV overlay: %s",
SDL_GetError());
return TC_ERROR;
}
if (verbose) {
tc_log_info(MOD_NAME, "preview window: %ix%i YV12 overlay",
pd->w, pd->h);
}
return TC_OK;
}
/*************************************************************************/
/**
* sdlview_stop: Reset this instance of the module. See tcmodule-data.h
* for function details.
*/
static int sdlview_stop(TCModuleInstance *self)
{
SDLPrivateData *pd = NULL;
TC_MODULE_SELF_CHECK(self, "stop");
pd = self->userdata;
SDL_FreeYUVOverlay(pd->overlay);
/*
* surface obtained by SetVideoMode will be automagically
* released by SDL_Quit
*/
return TC_OK;
}
/*************************************************************************/
/**
* sdlview_inspect: Return the value of an option in this instance of
* the module. See tcmodule-data.h for function details.
*/
static int sdlview_inspect(TCModuleInstance *self,
const char *param, const char **value)
{
TC_MODULE_SELF_CHECK(self, "inspect");
TC_MODULE_SELF_CHECK(param, "inspect");
TC_MODULE_SELF_CHECK(value, "inspect");
if (optstr_lookup(param, "help")) {
*value = sdlview_help;
}
return TC_OK;
}
/*************************************************************************/
/**
* sdlview_filter_video: display the video frame on preview window.
* See tcmodule-data.h for function details.
*/
static int sdlview_filter_video(TCModuleInstance *self, vframe_list_t *frame)
{
int ret = 0;
uint8_t *src_planes[3] = { NULL, NULL, NULL };
uint8_t *dst_planes[3] = { NULL, NULL, NULL };
SDLPrivateData *pd = NULL;
TC_MODULE_SELF_CHECK(self, "filter_video");
TC_MODULE_SELF_CHECK(frame, "filter_video");
pd = self->userdata;
SDL_LockYUVOverlay(pd->overlay);
YUV_INIT_PLANES(src_planes, frame->video_buf,
pd->src_fmt, pd->w, pd->h);
dst_planes[0] = pd->overlay->pixels[0];
dst_planes[1] = pd->overlay->pixels[1];
dst_planes[2] = pd->overlay->pixels[2];
ret = ac_imgconvert(src_planes, pd->src_fmt, dst_planes, IMG_YV12,
pd->w, pd->h);
SDL_UnlockYUVOverlay(pd->overlay);
pd->rectangle.x = 0;
pd->rectangle.y = 0;
pd->rectangle.w = pd->w;
pd->rectangle.h = pd->h;
SDL_DisplayYUVOverlay(pd->overlay, &(pd->rectangle));
/* this one can fail? */
return TC_OK;
}
/*************************************************************************/
/*************************************************************************/
static const TCCodecID sdlview_codecs_in[] = {
TC_CODEC_YUV420P, TC_CODEC_YUV422P, TC_CODEC_RGB, TC_CODEC_ERROR
};
static const TCCodecID sdlview_codecs_out[] = {
TC_CODEC_YUV420P, TC_CODEC_YUV422P, TC_CODEC_RGB, TC_CODEC_ERROR
};
TC_MODULE_FILTER_FORMATS(sdlview);
TC_MODULE_INFO(sdlview);
static const TCModuleClass sdlview_class = {
TC_MODULE_CLASS_HEAD(sdlview),
.init = sdlview_init,
.fini = sdlview_fini,
.configure = sdlview_configure,
.stop = sdlview_stop,
.inspect = sdlview_inspect,
.filter_video = sdlview_filter_video,
};
TC_MODULE_ENTRY_POINT(sdlview)
/*************************************************************************/
static int sdlview_get_config(TCModuleInstance *self, char *options)
{
TC_MODULE_SELF_CHECK(self, "get_config");
optstr_filter_desc(options, MOD_NAME, MOD_CAP, MOD_VERSION,
MOD_AUTHOR, "VRY4", "1");
return TC_OK;
}
static int sdlview_process(TCModuleInstance *self, frame_list_t *frame)
{
TC_MODULE_SELF_CHECK(self, "process");
if (frame->tag & TC_PREVIEW && frame->tag & TC_VIDEO) {
return sdlview_filter_video(self, (vframe_list_t *)frame);
}
return TC_OK;
}
/*************************************************************************/
TC_FILTER_OLDINTERFACE(sdlview)
/*************************************************************************/
/*
* Local variables:
* c-file-style: "stroustrup"
* c-file-offsets: ((case-label . *) (statement-case-intro . *))
* indent-tabs-mode: nil
* End:
*
* vim: expandtab shiftwidth=4:
*/
|