blob: 70221482d4aeb51e26c26b3695b7a10ecbac239e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#include "config.h"
#include <stdlib.h>
#include <string.h>
#include "stream.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
};
|