diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-03-07 13:33:44 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-03-07 13:33:44 +0000 |
commit | 2b68c0951fa6d9d00bc4a8404919dc6c5940d02c (patch) | |
tree | 754eefee111f77e918c9e8fac08b1b57bd12e34d /src/dxr3/dxr3_vo_core.c | |
parent | 90074eb0a111f126ef7cf5825ddf772751da4455 (diff) | |
download | xine-lib-2b68c0951fa6d9d00bc4a8404919dc6c5940d02c.tar.gz xine-lib-2b68c0951fa6d9d00bc4a8404919dc6c5940d02c.tar.bz2 |
Improvements to dxr3 support.
Added some nav packet decoding to help menus disappear.
by Michael Roitzsch
CVS patchset: 1542
CVS date: 2002/03/07 13:33:44
Diffstat (limited to 'src/dxr3/dxr3_vo_core.c')
-rw-r--r-- | src/dxr3/dxr3_vo_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dxr3/dxr3_vo_core.c b/src/dxr3/dxr3_vo_core.c index 538eed248..a22985479 100644 --- a/src/dxr3/dxr3_vo_core.c +++ b/src/dxr3/dxr3_vo_core.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: dxr3_vo_core.c,v 1.16 2002/03/05 20:39:05 jcdutton Exp $ + * $Id: dxr3_vo_core.c,v 1.17 2002/03/07 13:33:44 jcdutton Exp $ * ************************************************************************* * core functions common to both Standard and RT-Encoding vo plugins * @@ -287,7 +287,7 @@ int dxr3_set_property (vo_driver_t *this_gen, if (value > ASPECT_FULL) value = ASPECT_ANAMORPHIC; this->aspectratio = value; - fullscreen = is_fullscreen(this); + fullscreen = this->overlay_enabled ? is_fullscreen(this) : 0; if (value == ASPECT_ANAMORPHIC) { fprintf(stderr, "dxr3_vo: setting aspect ratio to anamorphic\n"); |