]> git.sesse.net Git - ffmpeg/blob - libavformat/file.c
Add support for some more audio formats
[ffmpeg] / libavformat / file.c
1 /*
2  * Buffered file io for ffmpeg system
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
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
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 #include "avformat.h"
22 #include "avstring.h"
23 #include <fcntl.h>
24 #include <unistd.h>
25 #include <sys/time.h>
26 #include <stdlib.h>
27
28
29 /* standard file protocol */
30
31 static int file_open(URLContext *h, const char *filename, int flags)
32 {
33     int access;
34     int fd;
35
36     av_strstart(filename, "file:", &filename);
37
38     if (flags & URL_RDWR) {
39         access = O_CREAT | O_TRUNC | O_RDWR;
40     } else if (flags & URL_WRONLY) {
41         access = O_CREAT | O_TRUNC | O_WRONLY;
42     } else {
43         access = O_RDONLY;
44     }
45 #ifdef O_BINARY
46     access |= O_BINARY;
47 #endif
48     fd = open(filename, access, 0666);
49     if (fd < 0)
50         return AVERROR(ENOENT);
51     h->priv_data = (void *)(size_t)fd;
52     return 0;
53 }
54
55 static int file_read(URLContext *h, unsigned char *buf, int size)
56 {
57     int fd = (size_t)h->priv_data;
58     return read(fd, buf, size);
59 }
60
61 static int file_write(URLContext *h, unsigned char *buf, int size)
62 {
63     int fd = (size_t)h->priv_data;
64     return write(fd, buf, size);
65 }
66
67 /* XXX: use llseek */
68 static offset_t file_seek(URLContext *h, offset_t pos, int whence)
69 {
70     int fd = (size_t)h->priv_data;
71     return lseek(fd, pos, whence);
72 }
73
74 static int file_close(URLContext *h)
75 {
76     int fd = (size_t)h->priv_data;
77     return close(fd);
78 }
79
80 URLProtocol file_protocol = {
81     "file",
82     file_open,
83     file_read,
84     file_write,
85     file_seek,
86     file_close,
87 };
88
89 /* pipe protocol */
90
91 static int pipe_open(URLContext *h, const char *filename, int flags)
92 {
93     int fd;
94     const char * final;
95     av_strstart(filename, "pipe:", &filename);
96
97     fd = strtol(filename, &final, 10);
98     if((filename == final) || *final ) {/* No digits found, or something like 10ab */
99         if (flags & URL_WRONLY) {
100             fd = 1;
101         } else {
102             fd = 0;
103         }
104     }
105 #ifdef O_BINARY
106     setmode(fd, O_BINARY);
107 #endif
108     h->priv_data = (void *)(size_t)fd;
109     h->is_streamed = 1;
110     return 0;
111 }
112
113 static int pipe_close(URLContext *h)
114 {
115     return 0;
116 }
117
118 URLProtocol pipe_protocol = {
119     "pipe",
120     pipe_open,
121     file_read,
122     file_write,
123     NULL,
124     pipe_close,
125 };