summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorgpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-06-20 23:07:35 +0000
committergpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-06-20 23:07:35 +0000
commit9dd8f241ac2e7b8f35227ab2bbafa27da2978e7d (patch)
tree74c537c8e5cd0e28f3bdd5a657904266d37f4204 /libvo
parent3de1e8b22e0f8fb0a82148462897c4c45753cf15 (diff)
downloadmpv-9dd8f241ac2e7b8f35227ab2bbafa27da2978e7d.tar.bz2
mpv-9dd8f241ac2e7b8f35227ab2bbafa27da2978e7d.tar.xz
adds some more -identify output, patch by kiriuja < mplayer DASH patches PAM en DASH directo POUM net>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15790 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/video_out.c2
-rw-r--r--libvo/x11_common.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 8f72095460..da86342f06 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -260,6 +260,8 @@ vo_functions_t* video_out_drivers[] =
void list_video_out(){
int i=0;
mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoOutputDrivers);
+ if (identify)
+ mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_VIDEO_OUTPUTS\n");
while (video_out_drivers[i]) {
const vo_info_t *info = video_out_drivers[i++]->info;
printf("\t%s\t%s\n", info->short_name, info->name);
diff --git a/libvo/x11_common.c b/libvo/x11_common.c
index 66e1694f6a..50034c2e1e 100644
--- a/libvo/x11_common.c
+++ b/libvo/x11_common.c
@@ -220,6 +220,8 @@ static int x11_errorhandler(Display * display, XErrorEvent * event)
void fstype_help(void)
{
mp_msg(MSGT_VO, MSGL_INFO, MSGTR_AvailableFsType);
+ if (identify)
+ mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_FULL_SCREEN_TYPES\n");
mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "none",
"don't set fullscreen window layer");