OLD | NEW |
1 /* | 1 /* |
2 * copyright (c) 2001 Fabrice Bellard | 2 * copyright (c) 2001 Fabrice Bellard |
3 * | 3 * |
4 * This file is part of FFmpeg. | 4 * This file is part of FFmpeg. |
5 * | 5 * |
6 * FFmpeg is free software; you can redistribute it and/or | 6 * FFmpeg is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Lesser General Public | 7 * modify it under the terms of the GNU Lesser General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2.1 of the License, or (at your option) any later version. | 9 * version 2.1 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 17 matching lines...) Expand all Loading... |
28 | 28 |
29 void av_program_add_stream_index(AVFormatContext *ac, int progid, unsigned int i
dx); | 29 void av_program_add_stream_index(AVFormatContext *ac, int progid, unsigned int i
dx); |
30 | 30 |
31 /** | 31 /** |
32 * Add packet to AVFormatContext->packet_buffer list, determining its | 32 * Add packet to AVFormatContext->packet_buffer list, determining its |
33 * interleaved position using compare() function argument. | 33 * interleaved position using compare() function argument. |
34 */ | 34 */ |
35 void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt, | 35 void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt, |
36 int (*compare)(AVFormatContext *, AVPacket *, AVPa
cket *)); | 36 int (*compare)(AVFormatContext *, AVPacket *, AVPa
cket *)); |
37 | 37 |
| 38 void av_read_frame_flush(AVFormatContext *s); |
| 39 |
38 #endif /* AVFORMAT_INTERNAL_H */ | 40 #endif /* AVFORMAT_INTERNAL_H */ |
OLD | NEW |