annotate file.c @ 6259:7b2f50760dfb libavformat

matroskaenc: write DisplayUnit element to better match the spec This makes it clear that we are specifying the aspect ratio, and not the intended display size in pixels.
author aurel
date Wed, 14 Jul 2010 19:36:14 +0000
parents 7f0042585fe4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1 /*
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
2 * Buffered file io for ffmpeg system
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
3 * Copyright (c) 2001 Fabrice Bellard
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
15 * Lesser General Public License for more details.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
16 *
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
20 */
3286
6f61c3b36632 Use full path for #includes from another directory.
diego
parents: 2774
diff changeset
21
6f61c3b36632 Use full path for #includes from another directory.
diego
parents: 2774
diff changeset
22 #include "libavutil/avstring.h"
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
23 #include "avformat.h"
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
24 #include <fcntl.h>
4206
c3102b189cb6 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 4200
diff changeset
25 #if HAVE_SETMODE
4200
898c3d1d9e4e Use setmode() if it exists in <io.h>, and not based on O_BINARY.
ramiro
parents: 3973
diff changeset
26 #include <io.h>
898c3d1d9e4e Use setmode() if it exists in <io.h>, and not based on O_BINARY.
ramiro
parents: 3973
diff changeset
27 #endif
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
28 #include <unistd.h>
5932
310b3b1b2921 Implement support to the AVSEEK_SIZE operation in file_seek().
stefano
parents: 5654
diff changeset
29 #include <sys/stat.h>
2395
1e827f59ddae Allow pipe: URL to take fd number as input
ramiro
parents: 2394
diff changeset
30 #include <stdlib.h>
2774
477419a721a3 os_support.h is also needed for usleep and lseek on MinGW.
ramiro
parents: 2758
diff changeset
31 #include "os_support.h"
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
32
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
33
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
34 /* standard file protocol */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
35
6238
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
36 static int file_read(URLContext *h, unsigned char *buf, int size)
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
37 {
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
38 int fd = (intptr_t) h->priv_data;
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
39 return read(fd, buf, size);
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
40 }
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
41
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
42 static int file_write(URLContext *h, const unsigned char *buf, int size)
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
43 {
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
44 int fd = (intptr_t) h->priv_data;
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
45 return write(fd, buf, size);
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
46 }
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
47
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
48 static int file_get_handle(URLContext *h)
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
49 {
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
50 return (intptr_t) h->priv_data;
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
51 }
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
52
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
53 #if CONFIG_FILE_PROTOCOL
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
54
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
55 static int file_open(URLContext *h, const char *filename, int flags)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
56 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
57 int access;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
58 int fd;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
59
2193
5ce5fad0dfac replace the uses of old string functions that Reimar missed
mru
parents: 1787
diff changeset
60 av_strstart(filename, "file:", &filename);
3
3442cae3ecf9 fixed 'file:' in URLs
bellard
parents: 0
diff changeset
61
364
0d74e8abcb3d avio patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents: 332
diff changeset
62 if (flags & URL_RDWR) {
0d74e8abcb3d avio patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents: 332
diff changeset
63 access = O_CREAT | O_TRUNC | O_RDWR;
0d74e8abcb3d avio patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents: 332
diff changeset
64 } else if (flags & URL_WRONLY) {
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
65 access = O_CREAT | O_TRUNC | O_WRONLY;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
66 } else {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
67 access = O_RDONLY;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
68 }
2205
28eb72f5208a Check for O_BINARY instead of a list of systems that need it
ramiro
parents: 2193
diff changeset
69 #ifdef O_BINARY
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
70 access |= O_BINARY;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
71 #endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
72 fd = open(filename, access, 0666);
5110
147adb327b84 Only consider -1 as an error return value for open().
benoit
parents: 4792
diff changeset
73 if (fd == -1)
5983
cb7e1e218016 Make file_open() return the error code set in errno if open() fails,
stefano
parents: 5932
diff changeset
74 return AVERROR(errno);
4792
dd9383951cb9 Use intptr_t when casting pointers to int.
ramiro
parents: 4640
diff changeset
75 h->priv_data = (void *) (intptr_t) fd;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
76 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
77 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
78
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
79 /* XXX: use llseek */
3973
549a09cf23fe Remove offset_t typedef and use int64_t directly instead.
diego
parents: 3367
diff changeset
80 static int64_t file_seek(URLContext *h, int64_t pos, int whence)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
81 {
4792
dd9383951cb9 Use intptr_t when casting pointers to int.
ramiro
parents: 4640
diff changeset
82 int fd = (intptr_t) h->priv_data;
5932
310b3b1b2921 Implement support to the AVSEEK_SIZE operation in file_seek().
stefano
parents: 5654
diff changeset
83 if (whence == AVSEEK_SIZE) {
310b3b1b2921 Implement support to the AVSEEK_SIZE operation in file_seek().
stefano
parents: 5654
diff changeset
84 struct stat st;
310b3b1b2921 Implement support to the AVSEEK_SIZE operation in file_seek().
stefano
parents: 5654
diff changeset
85 int ret = fstat(fd, &st);
310b3b1b2921 Implement support to the AVSEEK_SIZE operation in file_seek().
stefano
parents: 5654
diff changeset
86 return ret < 0 ? AVERROR(errno) : st.st_size;
310b3b1b2921 Implement support to the AVSEEK_SIZE operation in file_seek().
stefano
parents: 5654
diff changeset
87 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
88 return lseek(fd, pos, whence);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
89 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
90
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
91 static int file_close(URLContext *h)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
92 {
4792
dd9383951cb9 Use intptr_t when casting pointers to int.
ramiro
parents: 4640
diff changeset
93 int fd = (intptr_t) h->priv_data;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
94 return close(fd);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
95 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
96
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
97 URLProtocol file_protocol = {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
98 "file",
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
99 file_open,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
100 file_read,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
101 file_write,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
102 file_seek,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
103 file_close,
4640
b34d9614b887 Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents: 4634
diff changeset
104 .url_get_file_handle = file_get_handle,
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
105 };
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
106
6238
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
107 #endif /* CONFIG_FILE_PROTOCOL */
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
108
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
109 #if CONFIG_PIPE_PROTOCOL
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
110
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
111 static int pipe_open(URLContext *h, const char *filename, int flags)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
112 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
113 int fd;
3367
dc671b723b25 remove const qualifier, removes warning:
bcoudurier
parents: 3286
diff changeset
114 char *final;
2395
1e827f59ddae Allow pipe: URL to take fd number as input
ramiro
parents: 2394
diff changeset
115 av_strstart(filename, "pipe:", &filename);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
116
2395
1e827f59ddae Allow pipe: URL to take fd number as input
ramiro
parents: 2394
diff changeset
117 fd = strtol(filename, &final, 10);
1e827f59ddae Allow pipe: URL to take fd number as input
ramiro
parents: 2394
diff changeset
118 if((filename == final) || *final ) {/* No digits found, or something like 10ab */
2394
be66ba5bc96d Indent for next commit
ramiro
parents: 2356
diff changeset
119 if (flags & URL_WRONLY) {
be66ba5bc96d Indent for next commit
ramiro
parents: 2356
diff changeset
120 fd = 1;
be66ba5bc96d Indent for next commit
ramiro
parents: 2356
diff changeset
121 } else {
be66ba5bc96d Indent for next commit
ramiro
parents: 2356
diff changeset
122 fd = 0;
be66ba5bc96d Indent for next commit
ramiro
parents: 2356
diff changeset
123 }
2395
1e827f59ddae Allow pipe: URL to take fd number as input
ramiro
parents: 2394
diff changeset
124 }
4206
c3102b189cb6 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 4200
diff changeset
125 #if HAVE_SETMODE
394
c7a3987b4462 untested win32 binary pipe fix
michael
parents: 364
diff changeset
126 setmode(fd, O_BINARY);
c7a3987b4462 untested win32 binary pipe fix
michael
parents: 364
diff changeset
127 #endif
4792
dd9383951cb9 Use intptr_t when casting pointers to int.
ramiro
parents: 4640
diff changeset
128 h->priv_data = (void *) (intptr_t) fd;
605
deece487318e fixing pipe seek bug
michael
parents: 449
diff changeset
129 h->is_streamed = 1;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
130 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
131 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
132
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
133 URLProtocol pipe_protocol = {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
134 "pipe",
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
135 pipe_open,
2352
3dfa90f47d53 Make the pipe URLProtocol share read and write functions with the file URLProtocol
ramiro
parents: 2205
diff changeset
136 file_read,
3dfa90f47d53 Make the pipe URLProtocol share read and write functions with the file URLProtocol
ramiro
parents: 2205
diff changeset
137 file_write,
4640
b34d9614b887 Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents: 4634
diff changeset
138 .url_get_file_handle = file_get_handle,
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
139 };
6238
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
140
7f0042585fe4 Add #ifdefs around code specific to file and pipe protocols
mru
parents: 6235
diff changeset
141 #endif /* CONFIG_PIPE_PROTOCOL */