Mercurial > libavformat.hg
annotate file.c @ 2082:676463c51735 libavformat
cosmetics: fix indentation
author | alex |
---|---|
date | Fri, 11 May 2007 19:07:40 +0000 |
parents | eb16c64144ee |
children | 5ce5fad0dfac |
rev | line source |
---|---|
0 | 1 /* |
2 * Buffered file io for ffmpeg system | |
3 * Copyright (c) 2001 Fabrice Bellard | |
4 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1171
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1171
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1171
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
0 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1171
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
0 | 11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1171
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
0 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1171
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
885
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 20 */ |
21 #include "avformat.h" | |
22 #include <fcntl.h> | |
23 #include <unistd.h> | |
24 #include <sys/time.h> | |
25 | |
26 | |
27 /* standard file protocol */ | |
28 | |
29 static int file_open(URLContext *h, const char *filename, int flags) | |
30 { | |
31 int access; | |
32 int fd; | |
33 | |
3 | 34 strstart(filename, "file:", &filename); |
35 | |
364
0d74e8abcb3d
avio patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
332
diff
changeset
|
36 if (flags & URL_RDWR) { |
0d74e8abcb3d
avio patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
332
diff
changeset
|
37 access = O_CREAT | O_TRUNC | O_RDWR; |
0d74e8abcb3d
avio patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
332
diff
changeset
|
38 } else if (flags & URL_WRONLY) { |
0 | 39 access = O_CREAT | O_TRUNC | O_WRONLY; |
40 } else { | |
41 access = O_RDONLY; | |
42 } | |
1171
2a0c729ac640
CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use just
diego
parents:
896
diff
changeset
|
43 #if defined(__MINGW32__) || defined(CONFIG_OS2) || defined(__CYGWIN__) |
0 | 44 access |= O_BINARY; |
45 #endif | |
46 fd = open(filename, access, 0666); | |
47 if (fd < 0) | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1596
diff
changeset
|
48 return AVERROR(ENOENT); |
396 | 49 h->priv_data = (void *)(size_t)fd; |
0 | 50 return 0; |
51 } | |
52 | |
53 static int file_read(URLContext *h, unsigned char *buf, int size) | |
54 { | |
396 | 55 int fd = (size_t)h->priv_data; |
0 | 56 return read(fd, buf, size); |
57 } | |
58 | |
59 static int file_write(URLContext *h, unsigned char *buf, int size) | |
60 { | |
396 | 61 int fd = (size_t)h->priv_data; |
0 | 62 return write(fd, buf, size); |
63 } | |
64 | |
65 /* XXX: use llseek */ | |
66 static offset_t file_seek(URLContext *h, offset_t pos, int whence) | |
67 { | |
396 | 68 int fd = (size_t)h->priv_data; |
0 | 69 return lseek(fd, pos, whence); |
70 } | |
71 | |
72 static int file_close(URLContext *h) | |
73 { | |
396 | 74 int fd = (size_t)h->priv_data; |
0 | 75 return close(fd); |
76 } | |
77 | |
78 URLProtocol file_protocol = { | |
79 "file", | |
80 file_open, | |
81 file_read, | |
82 file_write, | |
83 file_seek, | |
84 file_close, | |
85 }; | |
86 | |
87 /* pipe protocol */ | |
88 | |
89 static int pipe_open(URLContext *h, const char *filename, int flags) | |
90 { | |
91 int fd; | |
92 | |
93 if (flags & URL_WRONLY) { | |
94 fd = 1; | |
95 } else { | |
96 fd = 0; | |
97 } | |
1171
2a0c729ac640
CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use just
diego
parents:
896
diff
changeset
|
98 #if defined(__MINGW32__) || defined(CONFIG_OS2) || defined(__CYGWIN__) |
394 | 99 setmode(fd, O_BINARY); |
100 #endif | |
396 | 101 h->priv_data = (void *)(size_t)fd; |
605 | 102 h->is_streamed = 1; |
0 | 103 return 0; |
104 } | |
105 | |
106 static int pipe_read(URLContext *h, unsigned char *buf, int size) | |
107 { | |
396 | 108 int fd = (size_t)h->priv_data; |
0 | 109 return read(fd, buf, size); |
110 } | |
111 | |
112 static int pipe_write(URLContext *h, unsigned char *buf, int size) | |
113 { | |
396 | 114 int fd = (size_t)h->priv_data; |
0 | 115 return write(fd, buf, size); |
116 } | |
117 | |
118 static int pipe_close(URLContext *h) | |
119 { | |
120 return 0; | |
121 } | |
122 | |
123 URLProtocol pipe_protocol = { | |
124 "pipe", | |
125 pipe_open, | |
126 pipe_read, | |
127 pipe_write, | |
128 NULL, | |
129 pipe_close, | |
130 }; |