annotate raw.h @ 6433:7c98c16c97c5 libavformat

move m4v demuxer to its own file
author aurel
date Sun, 29 Aug 2010 21:23:30 +0000
parents d3a51b32b769
children 4aaed59641ff
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2545
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
1 /*
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
2 * RAW muxer and demuxer
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
3 * Copyright (C) 2007 Aurelien Jacobs <aurel@gnuage.org>
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
4 *
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
5 * This file is part of FFmpeg.
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
6 *
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
11 *
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
15 * Lesser General Public License for more details.
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
16 *
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
20 */
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
21
3852
1b6245500d8c Globally rename the header inclusion guard names.
stefano
parents: 3617
diff changeset
22 #ifndef AVFORMAT_RAW_H
1b6245500d8c Globally rename the header inclusion guard names.
stefano
parents: 3617
diff changeset
23 #define AVFORMAT_RAW_H
2545
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
24
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
25 #include "avformat.h"
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
26
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
27 int pcm_read_seek(AVFormatContext *s,
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
28 int stream_index, int64_t timestamp, int flags);
213268d7594e move unrelated functions declarations out of allformats.h
aurel
parents:
diff changeset
29
6425
61cc005602fc move id roq muxer to its own file
aurel
parents: 4610
diff changeset
30 int ff_raw_write_packet(AVFormatContext *s, AVPacket *pkt);
61cc005602fc move id roq muxer to its own file
aurel
parents: 4610
diff changeset
31
4610
41542d2edcf4 Separate the raw FLAC demuxer from raw.c and put in a new file,
jbr
parents: 3852
diff changeset
32 int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt);
41542d2edcf4 Separate the raw FLAC demuxer from raw.c and put in a new file,
jbr
parents: 3852
diff changeset
33
6429
3e32902d7025 move DTS demuxer to its own file
aurel
parents: 6425
diff changeset
34 int ff_raw_audio_read_header(AVFormatContext *s, AVFormatParameters *ap);
3e32902d7025 move DTS demuxer to its own file
aurel
parents: 6425
diff changeset
35
6430
d3a51b32b769 move ingenient demuxer to its own file
aurel
parents: 6429
diff changeset
36 int ff_raw_video_read_header(AVFormatContext *s, AVFormatParameters *ap);
d3a51b32b769 move ingenient demuxer to its own file
aurel
parents: 6429
diff changeset
37
3852
1b6245500d8c Globally rename the header inclusion guard names.
stefano
parents: 3617
diff changeset
38 #endif /* AVFORMAT_RAW_H */