annotate libmpdemux/stream_file.c @ 14217:5b5ebf93ec16

Adds support for LADSPA (Linux Audio Developer's Simple Plugin API) plugins. Compilation is optional and can be controled by configure. You need to have the LADSPA SDK installed in order to have it autodetected by configure. Manual page is updated.
author ivo
date Thu, 23 Dec 2004 02:09:52 +0000
parents 1e42749917c8
children de27bb6ff3ec
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
1
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
2 #include "config.h"
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
3
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
4 #include <sys/types.h>
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
5 #include <sys/stat.h>
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
6 #include <fcntl.h>
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
7 #include <unistd.h>
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
8
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
9 #include "mp_msg.h"
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
10 #include "stream.h"
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
11 #include "help_mp.h"
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
12 #include "../m_option.h"
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
13 #include "../m_struct.h"
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
14
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
15 static struct stream_priv_s {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
16 char* filename;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
17 } stream_priv_dflts = {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
18 NULL
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
19 };
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
20
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
21 #define ST_OFF(f) M_ST_OFF(struct stream_priv_s,f)
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
22 /// URL definition
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
23 static m_option_t stream_opts_fields[] = {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
24 {"filename", ST_OFF(filename), CONF_TYPE_STRING, 0, 0 ,0, NULL},
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
25 { NULL, NULL, 0, 0, 0, 0, NULL }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
26 };
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
27 static struct m_struct_st stream_opts = {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
28 "file",
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
29 sizeof(struct stream_priv_s),
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
30 &stream_priv_dflts,
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
31 stream_opts_fields
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
32 };
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
33
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
34 static int fill_buffer(stream_t *s, char* buffer, int max_len){
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
35 int r = read(s->fd,buffer,max_len);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
36 return (r <= 0) ? -1 : r;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
37 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
38
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
39 static int write_buffer(stream_t *s, char* buffer, int len) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
40 int r = write(s->fd,buffer,len);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
41 return (r <= 0) ? -1 : r;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
42 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
43
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
44 static int seek(stream_t *s,off_t newpos) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
45 s->pos = newpos;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
46 if(lseek(s->fd,s->pos,SEEK_SET)<0) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
47 s->eof=1;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
48 return 0;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
49 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
50 return 1;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
51 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
52
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
53 static int seek_forward(stream_t *s,off_t newpos) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
54 if(newpos<s->pos){
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
55 mp_msg(MSGT_STREAM,MSGL_INFO,"Cannot seek backward in linear streams!\n");
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
56 return 0;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
57 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
58 while(s->pos<newpos){
12018
2c2fb4457982 Seek in HTTP streams and stdin seek fixes
rtognimp
parents: 10608
diff changeset
59 int len=s->fill_buffer(s,s->buffer,STREAM_BUFFER_SIZE);
2c2fb4457982 Seek in HTTP streams and stdin seek fixes
rtognimp
parents: 10608
diff changeset
60 if(len<=0){ s->eof=1; s->buf_pos=s->buf_len=0; break; } // EOF
2c2fb4457982 Seek in HTTP streams and stdin seek fixes
rtognimp
parents: 10608
diff changeset
61 s->buf_pos=0;
2c2fb4457982 Seek in HTTP streams and stdin seek fixes
rtognimp
parents: 10608
diff changeset
62 s->buf_len=len;
2c2fb4457982 Seek in HTTP streams and stdin seek fixes
rtognimp
parents: 10608
diff changeset
63 s->pos+=len;
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
64 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
65 return 1;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
66 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
67
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
68 static int open_f(stream_t *stream,int mode, void* opts, int* file_format) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
69 int f;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
70 mode_t m = 0;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
71 off_t len;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
72 struct stream_priv_s* p = (struct stream_priv_s*)opts;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
73
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
74 if(mode == STREAM_READ)
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
75 m = O_RDONLY;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
76 else if(mode == STREAM_WRITE)
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
77 m = O_WRONLY;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
78 else {
10608
2cae82f2ab02 Spelling police:
diego
parents: 9849
diff changeset
79 mp_msg(MSGT_OPEN,MSGL_ERR, "[file] Unknown open mode %d\n",mode);
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
80 m_struct_free(&stream_opts,opts);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
81 return STREAM_UNSUPORTED;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
82 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
83
9849
5b649442fe72 Check that we really got a filename.
albeu
parents: 9827
diff changeset
84 if(!p->filename) {
5b649442fe72 Check that we really got a filename.
albeu
parents: 9827
diff changeset
85 mp_msg(MSGT_OPEN,MSGL_ERR, "[file] No filename\n");
5b649442fe72 Check that we really got a filename.
albeu
parents: 9827
diff changeset
86 m_struct_free(&stream_opts,opts);
5b649442fe72 Check that we really got a filename.
albeu
parents: 9827
diff changeset
87 return STREAM_ERROR;
5b649442fe72 Check that we really got a filename.
albeu
parents: 9827
diff changeset
88 }
5b649442fe72 Check that we really got a filename.
albeu
parents: 9827
diff changeset
89
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
90 #if defined(__CYGWIN__)|| defined(__MINGW32__)
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
91 m |= O_BINARY;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
92 #endif
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
93
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
94 if(!strcmp(p->filename,"-")){
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
95 if(mode == STREAM_READ) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
96 // read from stdin
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
97 mp_msg(MSGT_OPEN,MSGL_INFO,MSGTR_ReadSTDIN);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
98 f=0; // 0=stdin
12921
1e42749917c8 mingw stdin fixes
faust3
parents: 12018
diff changeset
99 #ifdef __MINGW32__
1e42749917c8 mingw stdin fixes
faust3
parents: 12018
diff changeset
100 setmode(fileno(stdin),O_BINARY);
1e42749917c8 mingw stdin fixes
faust3
parents: 12018
diff changeset
101 #endif
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
102 } else {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
103 mp_msg(MSGT_OPEN,MSGL_INFO,"Writing to stdout\n");
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
104 f=1;
12921
1e42749917c8 mingw stdin fixes
faust3
parents: 12018
diff changeset
105 #ifdef __MINGW32__
1e42749917c8 mingw stdin fixes
faust3
parents: 12018
diff changeset
106 setmode(fileno(stdout),O_BINARY);
1e42749917c8 mingw stdin fixes
faust3
parents: 12018
diff changeset
107 #endif
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
108 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
109 } else {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
110 f=open(p->filename,m);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
111 if(f<0) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
112 mp_msg(MSGT_OPEN,MSGL_ERR,MSGTR_FileNotFound,p->filename);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
113 m_struct_free(&stream_opts,opts);
9827
d179dbc45935 Little fix.
albeu
parents: 9794
diff changeset
114 return STREAM_ERROR;
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
115 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
116 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
117
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
118 len=lseek(f,0,SEEK_END); lseek(f,0,SEEK_SET);
12921
1e42749917c8 mingw stdin fixes
faust3
parents: 12018
diff changeset
119 #ifdef __MINGW32__
1e42749917c8 mingw stdin fixes
faust3
parents: 12018
diff changeset
120 if(f==0 || len == -1) {
1e42749917c8 mingw stdin fixes
faust3
parents: 12018
diff changeset
121 #else
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
122 if(len == -1) {
12921
1e42749917c8 mingw stdin fixes
faust3
parents: 12018
diff changeset
123 #endif
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
124 stream->seek = seek_forward;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
125 stream->type = STREAMTYPE_STREAM; // Must be move to STREAMTYPE_FILE
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
126 stream->flags |= STREAM_SEEK_FW;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
127 } else if(len >= 0) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
128 stream->seek = seek;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
129 stream->end_pos = len;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
130 stream->type = STREAMTYPE_FILE;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
131 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
132
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
133 #ifdef _LARGEFILE_SOURCE
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
134 mp_msg(MSGT_OPEN,MSGL_V,"[file] File size is %lld bytes\n", (long long)len);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
135 #else
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
136 mp_msg(MSGT_OPEN,MSGL_V,"[file] File size is %u bytes\n", (unsigned int)len);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
137 #endif
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
138
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
139 stream->fd = f;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
140 stream->fill_buffer = fill_buffer;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
141 stream->write_buffer = write_buffer;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
142
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
143 m_struct_free(&stream_opts,opts);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
144 return STREAM_OK;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
145 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
146
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
147 stream_info_t stream_info_file = {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
148 "File",
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
149 "file",
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
150 "Albeu",
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
151 "based on the code from ??? (probably Arpi)",
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
152 open_f,
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
153 { "file", "", NULL },
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
154 &stream_opts,
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
155 1 // Urls are an option string
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents:
diff changeset
156 };