You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.3 KiB
54 lines
2.3 KiB
/*****************************************************************************
|
|
* common.h : common spu defines
|
|
*****************************************************************************
|
|
* Copyright (C) 2021 VLC authors and VideoLAN
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 2.1 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#include <vlc_subpicture.h>
|
|
|
|
#define OPACITY_TEXT N_("Opacity")
|
|
#define OPACITY_LONGTEXT N_("Opacity (inverse of transparency), " \
|
|
"from 0 for fully transparent to 255 for fully opaque." )
|
|
|
|
#define POSX_TEXT N_("X offset")
|
|
#define POSY_TEXT N_("Y offset")
|
|
#define POSX_LONGTEXT N_("X offset, from top-left, or from relative position." )
|
|
#define POSY_LONGTEXT N_("Y offset, from top-left, or from relative position." )
|
|
|
|
#define POS_TEXT N_("Position")
|
|
#define POS_LONGTEXT N_( \
|
|
"Set the position on the video " \
|
|
"(-1=absolute, 0=center, 1=left, 2=right, 4=top, 8=bottom; you can " \
|
|
"also use combinations of these values, e.g. 6 = top-right).")
|
|
|
|
/* Excluding absolute, these values correspond to SUBPICTURE_ALIGN_* flags */
|
|
static const int pi_pos_values[] = {
|
|
-1,
|
|
0,
|
|
SUBPICTURE_ALIGN_LEFT,
|
|
SUBPICTURE_ALIGN_RIGHT,
|
|
SUBPICTURE_ALIGN_TOP,
|
|
SUBPICTURE_ALIGN_BOTTOM,
|
|
SUBPICTURE_ALIGN_TOP | SUBPICTURE_ALIGN_LEFT,
|
|
SUBPICTURE_ALIGN_TOP | SUBPICTURE_ALIGN_RIGHT,
|
|
SUBPICTURE_ALIGN_BOTTOM | SUBPICTURE_ALIGN_LEFT,
|
|
SUBPICTURE_ALIGN_BOTTOM | SUBPICTURE_ALIGN_RIGHT,
|
|
};
|
|
static const char *const ppsz_pos_descriptions[] =
|
|
{ N_("Absolute"),
|
|
N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
|
|
N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
|
|
|