From e3a29a7f4eaf43d84b5e85dcbc0a6004c2cfa18a Mon Sep 17 00:00:00 2001 From: uau Date: Mon, 31 Mar 2008 04:10:51 +0000 Subject: mp_core.h: Fix use of 'mp_image_t' without definition A field under #ifdef USE_DVDNAV had type "mp_image_t *', but a definition of the type was not included. Fix by changing the type to "struct mp_image_s *". This probably started causing visible compilation failures after '#include "command.h"' was added to command.c, as that led to mp_core.h being included earlier. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26304 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mp_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mp_core.h') diff --git a/mp_core.h b/mp_core.h index 0433ca6c08..57d32ffafa 100644 --- a/mp_core.h +++ b/mp_core.h @@ -99,7 +99,7 @@ typedef struct MPContext { int was_paused; #ifdef USE_DVDNAV - mp_image_t *nav_smpi; ///< last decoded dvdnav video image + struct mp_image_s *nav_smpi; ///< last decoded dvdnav video image unsigned char *nav_buffer; ///< last read dvdnav video frame unsigned char *nav_start; ///< pointer to last read video buffer int nav_in_size; ///< last read size -- cgit v1.2.3