Mercurial > libavformat.hg
annotate file.c @ 2958:b489d30f8685 libavformat
Add minimal support for H.264 video in the SDP generator
author | lucabe |
---|---|
date | Mon, 21 Jan 2008 11:09:06 +0000 |
parents | 477419a721a3 |
children | 6f61c3b36632 |
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" | |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
1787
diff
changeset
|
22 #include "avstring.h" |
0 | 23 #include <fcntl.h> |
24 #include <unistd.h> | |
25 #include <sys/time.h> | |
2395 | 26 #include <stdlib.h> |
2774
477419a721a3
os_support.h is also needed for usleep and lseek on MinGW.
ramiro
parents:
2758
diff
changeset
|
27 #include "os_support.h" |
0 | 28 |
29 | |
30 /* standard file protocol */ | |
31 | |
32 static int file_open(URLContext *h, const char *filename, int flags) | |
33 { | |
34 int access; | |
35 int fd; | |
36 | |
2193
5ce5fad0dfac
replace the uses of old string functions that Reimar missed
mru
parents:
1787
diff
changeset
|
37 av_strstart(filename, "file:", &filename); |
3 | 38 |
364
0d74e8abcb3d
avio patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
332
diff
changeset
|
39 if (flags & URL_RDWR) { |
0d74e8abcb3d
avio patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
332
diff
changeset
|
40 access = O_CREAT | O_TRUNC | O_RDWR; |
0d74e8abcb3d
avio patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
332
diff
changeset
|
41 } else if (flags & URL_WRONLY) { |
0 | 42 access = O_CREAT | O_TRUNC | O_WRONLY; |
43 } else { | |
44 access = O_RDONLY; | |
45 } | |
2205
28eb72f5208a
Check for O_BINARY instead of a list of systems that need it
ramiro
parents:
2193
diff
changeset
|
46 #ifdef O_BINARY |
0 | 47 access |= O_BINARY; |
48 #endif | |
49 fd = open(filename, access, 0666); | |
50 if (fd < 0) | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1596
diff
changeset
|
51 return AVERROR(ENOENT); |
396 | 52 h->priv_data = (void *)(size_t)fd; |
0 | 53 return 0; |
54 } | |
55 | |
56 static int file_read(URLContext *h, unsigned char *buf, int size) | |
57 { | |
396 | 58 int fd = (size_t)h->priv_data; |
0 | 59 return read(fd, buf, size); |
60 } | |
61 | |
62 static int file_write(URLContext *h, unsigned char *buf, int size) | |
63 { | |
396 | 64 int fd = (size_t)h->priv_data; |
0 | 65 return write(fd, buf, size); |
66 } | |
67 | |
68 /* XXX: use llseek */ | |
69 static offset_t file_seek(URLContext *h, offset_t pos, int whence) | |
70 { | |
396 | 71 int fd = (size_t)h->priv_data; |
0 | 72 return lseek(fd, pos, whence); |
73 } | |
74 | |
75 static int file_close(URLContext *h) | |
76 { | |
396 | 77 int fd = (size_t)h->priv_data; |
0 | 78 return close(fd); |
79 } | |
80 | |
81 URLProtocol file_protocol = { | |
82 "file", | |
83 file_open, | |
84 file_read, | |
85 file_write, | |
86 file_seek, | |
87 file_close, | |
88 }; | |
89 | |
90 /* pipe protocol */ | |
91 | |
92 static int pipe_open(URLContext *h, const char *filename, int flags) | |
93 { | |
94 int fd; | |
2395 | 95 const char * final; |
96 av_strstart(filename, "pipe:", &filename); | |
0 | 97 |
2395 | 98 fd = strtol(filename, &final, 10); |
99 if((filename == final) || *final ) {/* No digits found, or something like 10ab */ | |
2394 | 100 if (flags & URL_WRONLY) { |
101 fd = 1; | |
102 } else { | |
103 fd = 0; | |
104 } | |
2395 | 105 } |
2205
28eb72f5208a
Check for O_BINARY instead of a list of systems that need it
ramiro
parents:
2193
diff
changeset
|
106 #ifdef O_BINARY |
394 | 107 setmode(fd, O_BINARY); |
108 #endif | |
396 | 109 h->priv_data = (void *)(size_t)fd; |
605 | 110 h->is_streamed = 1; |
0 | 111 return 0; |
112 } | |
113 | |
114 URLProtocol pipe_protocol = { | |
115 "pipe", | |
116 pipe_open, | |
2352
3dfa90f47d53
Make the pipe URLProtocol share read and write functions with the file URLProtocol
ramiro
parents:
2205
diff
changeset
|
117 file_read, |
3dfa90f47d53
Make the pipe URLProtocol share read and write functions with the file URLProtocol
ramiro
parents:
2205
diff
changeset
|
118 file_write, |
0 | 119 }; |