Mercurial > mplayer.hg
view stream/stream_null.c @ 19303:d9e836da5093
Forgotten part of the LIVE555 configure test simplification.
author | diego |
---|---|
date | Thu, 03 Aug 2006 22:18:21 +0000 |
parents | 097e5bc71210 |
children | ab8d6b6deb63 |
line wrap: on
line source
#include "config.h" #include <stdlib.h> #include <string.h> #include "stream.h" #include "demuxer.h" static int open_s(stream_t *stream,int mode, void* opts, int* file_format) { stream->type = STREAMTYPE_DUMMY; return 1; } stream_info_t stream_info_null = { "Null stream", "null", "Albeu", "", open_s, { "null", NULL }, NULL, 0 // Urls are an option string };