ffmpeg / libavformat / avio_internal.h @ b3db9cee
History | View | Annotate | Download (1.53 KB)
1 | e731b8d8 | Anton Khirnov | /*
|
---|---|---|---|
2 | *
|
||
3 | * This file is part of FFmpeg.
|
||
4 | *
|
||
5 | * FFmpeg is free software; you can redistribute it and/or
|
||
6 | * modify it under the terms of the GNU Lesser General Public
|
||
7 | * License as published by the Free Software Foundation; either
|
||
8 | * version 2.1 of the License, or (at your option) any later version.
|
||
9 | *
|
||
10 | * FFmpeg is distributed in the hope that it will be useful,
|
||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
13 | * Lesser General Public License for more details.
|
||
14 | *
|
||
15 | * You should have received a copy of the GNU Lesser General Public
|
||
16 | * License along with FFmpeg; if not, write to the Free Software
|
||
17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
18 | */
|
||
19 | |||
20 | #ifndef AVFORMAT_AVIO_INTERNAL_H
|
||
21 | #define AVFORMAT_AVIO_INTERNAL_H
|
||
22 | |||
23 | #include "avio.h" |
||
24 | |||
25 | int ffio_init_context(AVIOContext *s,
|
||
26 | unsigned char *buffer, |
||
27 | int buffer_size,
|
||
28 | int write_flag,
|
||
29 | void *opaque,
|
||
30 | int (*read_packet)(void *opaque, uint8_t *buf, int buf_size), |
||
31 | int (*write_packet)(void *opaque, uint8_t *buf, int buf_size), |
||
32 | int64_t (*seek)(void *opaque, int64_t offset, int whence)); |
||
33 | |||
34 | |||
35 | b3db9cee | Anton Khirnov | /**
|
36 | * Read size bytes from AVIOContext into buf.
|
||
37 | * This reads at most 1 packet. If that is not enough fewer bytes will be
|
||
38 | * returned.
|
||
39 | * @return number of bytes read or AVERROR
|
||
40 | */
|
||
41 | int ffio_read_partial(AVIOContext *s, unsigned char *buf, int size); |
||
42 | |||
43 | e731b8d8 | Anton Khirnov | #endif // AVFORMAT_AVIO_INTERNAL_H |