diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-11-20 00:42:14 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-11-20 00:42:14 +0000 |
commit | 86d39c4ef501d1f975a2e6bc1a71472102d6f167 (patch) | |
tree | 9d5c51f283a45fba1dc55b0d36c93fb1ccf37916 /src/xine-engine/info_helper.h | |
parent | c0c8ad9dfc5f4bf261c20ddc93d60f87666290da (diff) | |
download | xine-lib-86d39c4ef501d1f975a2e6bc1a71472102d6f167.tar.gz xine-lib-86d39c4ef501d1f975a2e6bc1a71472102d6f167.tar.bz2 |
"Anti audio fifo null" patch ;)
Makes things a bit more symetric:
- the audio fifo (demuxer->decoder) can't be NULL
- the video driver can be NULL
A dummy fifo (5 buffers) is used if the audio driver or video driver is NULL.
Audio frontends (rhythmbox, seedeexeen, quark) do not need to instanciate a video driver anymore.
CVS patchset: 5767
CVS date: 2003/11/20 00:42:14
Diffstat (limited to 'src/xine-engine/info_helper.h')
-rw-r--r-- | src/xine-engine/info_helper.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/info_helper.h b/src/xine-engine/info_helper.h index a163823a5..6e7052390 100644 --- a/src/xine-engine/info_helper.h +++ b/src/xine-engine/info_helper.h @@ -31,7 +31,7 @@ /* * set a stream info * - * params : + * params: * *stream the xine stream * info stream info id (see xine.h, XINE_STREAM_INFO_*) * value the value to assign @@ -82,7 +82,7 @@ uint32_t _x_stream_info_get_public(xine_stream_t *stream, int info); /* * set a stream meta info * - * params : + * params: * *stream the xine stream * info meta info id (see xine.h, XINE_META_INFO_*) * *str null-terminated string @@ -93,7 +93,7 @@ void _x_meta_info_set(xine_stream_t *stream, int info, const char *str); /* * set a stream meta info * - * params : + * params: * *stream the xine stream * info meta info id (see xine.h, XINE_META_INFO_*) * *buf char buffer (not a null-terminated string) |