aboutsummaryrefslogtreecommitdiffhomepage
path: root/libmpdemux/tv.c
diff options
context:
space:
mode:
authorGravatar alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-13 18:56:29 +0000
committerGravatar alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-13 18:56:29 +0000
commit5975cc9bbf2fcf5fe72eb0b68a8f0646dc3381c4 (patch)
tree7b62afa9f4c4e1a8f65c5d4f67994f5976959514 /libmpdemux/tv.c
parent9cc5a0f4abbdf452e46e9ad07bb12ccc09495a77 (diff)
Settled to CONF_TYPE_IMGFMT which simplified lot of things. Now there's no need to add new img formats to the source, instead you can try it out by providing it in hexa format, and if it isn't supported by the card, you get a nice error message. That's all.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10599 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/tv.c')
-rw-r--r--libmpdemux/tv.c42
1 files changed, 19 insertions, 23 deletions
diff --git a/libmpdemux/tv.c b/libmpdemux/tv.c
index 5a8e607a55..f215b88ceb 100644
--- a/libmpdemux/tv.c
+++ b/libmpdemux/tv.c
@@ -54,7 +54,7 @@ char *tv_param_driver = "dummy";
int tv_param_width = -1;
int tv_param_height = -1;
int tv_param_input = 0; /* used in v4l and bttv */
-char *tv_param_outfmt = "yv12";
+int tv_param_outfmt = IMGFMT_YV12;
float tv_param_fps = -1.0;
char **tv_param_channels = NULL;
#if defined(HAVE_TV_V4L) || defined(HAVE_TV_V4L2)
@@ -147,7 +147,6 @@ static int open_tv(tvi_handle_t *tvh)
{
int i;
tvi_functions_t *funcs = tvh->functions;
- int picture_format = 0;
if (funcs->control(tvh->priv, TVI_CONTROL_IS_VIDEO, 0) != TVI_CONTROL_TRUE)
{
@@ -155,29 +154,26 @@ static int open_tv(tvi_handle_t *tvh)
return 0;
}
- if (!strcasecmp(tv_param_outfmt, "yv12"))
- picture_format = IMGFMT_YV12;
- else if (!strcasecmp(tv_param_outfmt, "i420"))
- picture_format = IMGFMT_I420;
- else if (!strcasecmp(tv_param_outfmt, "uyvy"))
- picture_format = IMGFMT_UYVY;
- else if (!strcasecmp(tv_param_outfmt, "yuy2"))
- picture_format = IMGFMT_YUY2;
- else if (!strcasecmp(tv_param_outfmt, "rgb32"))
- picture_format = IMGFMT_RGB32;
- else if (!strcasecmp(tv_param_outfmt, "rgb24"))
- picture_format = IMGFMT_RGB24;
- else if (!strcasecmp(tv_param_outfmt, "rgb16"))
- picture_format = IMGFMT_RGB16;
- else if (!strcasecmp(tv_param_outfmt, "rgb15"))
- picture_format = IMGFMT_RGB15;
- else
+ switch(tv_param_outfmt)
{
- mp_msg(MSGT_TV, MSGL_ERR, "Unknown format given: %s\n", tv_param_outfmt);
- mp_msg(MSGT_TV, MSGL_V, "Using default: Planar YV12\n");
- picture_format = IMGFMT_YV12;
+ case IMGFMT_YV12:
+ case IMGFMT_I420:
+ case IMGFMT_UYVY:
+ case IMGFMT_YUY2:
+ case IMGFMT_RGB32:
+ case IMGFMT_RGB24:
+ case IMGFMT_RGB16:
+ case IMGFMT_RGB15:
+ break;
+ default:
+ mp_msg(MSGT_TV, MSGL_ERR, "=================================================================\n");
+ mp_msg(MSGT_TV, MSGL_ERR, " WARNING: UNTESTED OR UNKNOWN OUTPUT IMAGE FORMAT REQUIRED (0x%x)\n", tv_param_outfmt);
+ mp_msg(MSGT_TV, MSGL_ERR, " This may cause buggy playback or program crash! Bugreports will\n");
+ mp_msg(MSGT_TV, MSGL_ERR, " be ignored! You should try again with YV12 (which is the default\n");
+ mp_msg(MSGT_TV, MSGL_ERR, " colorspace) and read the documentation!\n");
+ mp_msg(MSGT_TV, MSGL_ERR, "=================================================================\n");
}
- funcs->control(tvh->priv, TVI_CONTROL_VID_SET_FORMAT, &picture_format);
+ funcs->control(tvh->priv, TVI_CONTROL_VID_SET_FORMAT, &tv_param_outfmt);
/* set some params got from cmdline */
funcs->control(tvh->priv, TVI_CONTROL_SPC_SET_INPUT, &tv_param_input);