annotate flacenc.h @ 4754:c78617194786 libavformat

Assign the x-pf-asf payload string to be decoded by rtp_asf.c, and add a SDP line handler that parses the streamID in the SDP so that ASF stream data can be matched to their respective streams in the RTSP demuxer. See "[PATCH] RTSP-MS 12/15: ASF payload support" thread on mailinglist.
author rbultje
date Fri, 20 Mar 2009 01:11:08 +0000
parents c52d40f0a955
children 121d6994c20e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4581
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
1 /*
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
2 * raw FLAC muxer
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
3 * Copyright (C) 2009 Justin Ruggles
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
4 *
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
5 * This file is part of FFmpeg.
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
6 *
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
11 *
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
15 * Lesser General Public License for more details.
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
16 *
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
20 */
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
21
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
22 #ifndef AVFORMAT_FLACENC_H
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
23 #define AVFORMAT_FLACENC_H
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
24
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
25 #include "avformat.h"
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
26
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
27 int ff_flac_write_header(ByteIOContext *pb, AVCodecContext *codec);
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
28
c52d40f0a955 Share the function to write a raw FLAC header and use it in the Matroska
jbr
parents:
diff changeset
29 #endif /* AVFORMAT_FLACENC_H */