diff options
author | jkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-03-17 15:11:44 +0000 |
---|---|---|
committer | jkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-03-17 15:11:44 +0000 |
commit | f08bc385fe5db0d20084e15640e7f2a1563ee1c6 (patch) | |
tree | 234bd60f6118aabaeaae76f16e223ac8ccf0c5f7 | |
parent | a599300f4fa0a3d30a1b5d38898d2ee478f7d486 (diff) |
Add a (more or less dummy) reference to vo_format_name(), to pull the
img_format.o object from libvo.a on solaris.
The typical set of libvo video drivers on solaris didn't reference this symbol,
but a library at the end of the link command for mplayer requires this
function.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5164 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libvo/vo_x11.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libvo/vo_x11.c b/libvo/vo_x11.c index 66f7ee3e6c..80a9cf2c44 100644 --- a/libvo/vo_x11.c +++ b/libvo/vo_x11.c @@ -553,6 +553,8 @@ static uint32_t get_image(mp_image_t *mpi) static uint32_t query_format( uint32_t format ) { + if(verbose > 2) + printf("vo_x11: query_format was called: %x (%s)\n",format,vo_format_name(format)); if (IMGFMT_IS_BGR(format)) { if (IMGFMT_BGR_DEPTH(format) == vo_depthonscreen) |