#include "libavutil/intreadwrite.h"
#include "avformat.h"
Go to the source code of this file.
Data Structures | |
| struct | yop_dec_context |
Typedefs | |
| typedef struct yop_dec_context | YopDecContext |
Functions | |
| static int | yop_probe (AVProbeData *probe_packet) |
| static int | yop_read_header (AVFormatContext *s, AVFormatParameters *ap) |
| static int | yop_read_packet (AVFormatContext *s, AVPacket *pkt) |
| static int | yop_read_close (AVFormatContext *s) |
| static int | yop_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp, int flags) |
Variables | |
| AVInputFormat | ff_yop_demuxer |
Copyright (C) 2010 Mohamed Naufal Basheer <naufal11@gmail.com> derived from the code by Copyright (C) 2009 Thomas P. Higdon <thomas.p.higdon@gmail.com>
This file is part of FFmpeg.
FFmpeg is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
FFmpeg is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with FFmpeg; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Definition in file yop.c.
| typedef struct yop_dec_context YopDecContext |
| static int yop_probe | ( | AVProbeData * | probe_packet | ) | [static] |
| static int yop_read_close | ( | AVFormatContext * | s | ) | [static] |
| static int yop_read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) | [static] |
| static int yop_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
| static int yop_read_seek | ( | AVFormatContext * | s, | |
| int | stream_index, | |||
| int64_t | timestamp, | |||
| int | flags | |||
| ) | [static] |
Initial value:
{
"yop",
NULL_IF_CONFIG_SMALL("Psygnosis YOP Format"),
sizeof(YopDecContext),
yop_probe,
yop_read_header,
yop_read_packet,
yop_read_close,
yop_read_seek,
.extensions = "yop",
.flags = AVFMT_GENERIC_INDEX,
}
1.5.8