diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-03-05 20:39:05 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-03-05 20:39:05 +0000 |
commit | 0ee66af23049eba5ff2aa82f80e316ec3ddb59d2 (patch) | |
tree | fe2520d5cb31c708298a6aa91485ecb505704260 /src/dxr3/dxr3_vo_core.c | |
parent | 99a4dbf75cc3f7a40354b6c6596f4ea7aa373c52 (diff) | |
download | xine-lib-0ee66af23049eba5ff2aa82f80e316ec3ddb59d2.tar.gz xine-lib-0ee66af23049eba5ff2aa82f80e316ec3ddb59d2.tar.bz2 |
Add video out get_property function call
----------------------------------------------------------------------
CVS patchset: 1536
CVS date: 2002/03/05 20:39:05
Diffstat (limited to 'src/dxr3/dxr3_vo_core.c')
-rw-r--r-- | src/dxr3/dxr3_vo_core.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dxr3/dxr3_vo_core.c b/src/dxr3/dxr3_vo_core.c index 029175424..538eed248 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.15 2002/02/25 23:44:05 jcdutton Exp $ + * $Id: dxr3_vo_core.c,v 1.16 2002/03/05 20:39:05 jcdutton Exp $ * ************************************************************************* * core functions common to both Standard and RT-Encoding vo plugins * @@ -249,6 +249,9 @@ int dxr3_get_property (vo_driver_t *this_gen, int property) case VO_PROP_TVMODE: break; + case VO_PROP_VO_TYPE: + val = VO_TYPE_DXR3; + break; default: val = 0; fprintf(stderr, "dxr3_vo: property %d not implemented!\n", property); |