diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-06-09 18:40:41 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-06-09 18:40:41 +0000 |
commit | 0933fe6902e2504599b65cf6d235edbd1b901828 (patch) | |
tree | 92611f1523b345aa89f6e4055207cbc9d4f8dfb4 /src/xine-engine/video_out.c | |
parent | a6286f5fc779af20613910ddf8032c25d74247ac (diff) | |
download | xine-lib-0933fe6902e2504599b65cf6d235edbd1b901828.tar.gz xine-lib-0933fe6902e2504599b65cf6d235edbd1b901828.tar.bz2 |
finally - w32codec works again
CVS patchset: 137
CVS date: 2001/06/09 18:40:41
Diffstat (limited to 'src/xine-engine/video_out.c')
-rw-r--r-- | src/xine-engine/video_out.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index 1d62d84b4..4f363fc7d 100644 --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.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: video_out.c,v 1.13 2001/06/03 19:41:05 guenter Exp $ + * $Id: video_out.c,v 1.14 2001/06/09 18:40:41 guenter Exp $ * */ @@ -262,6 +262,9 @@ static void *video_out_loop (void *this_gen) { pthread_exit(NULL); } +static uint32_t vo_get_capabilities (vo_instance_t *this) { + return this->driver->get_capabilities (this->driver); +} static void vo_open (vo_instance_t *this) { @@ -442,6 +445,7 @@ vo_instance_t *vo_new_instance (vo_driver_t *driver, metronom_t *metronom) { this->get_frame = vo_get_frame; this->close = vo_close; this->exit = vo_exit; + this->get_capabilities = vo_get_capabilities; this->num_frames_delivered = 0; this->num_frames_skipped = 0; |