annotate asfcrypt.h @ 3840:e43947d04029 libavformat

Implement RTSP/Realmedia-compatible OPTIONS command. See "Realmedia patch" thread on mailinglist for discussion. This patch also implements a RTSPServerType enum, which allows the RTSP to keep track of what kind of a stream we're handling: standard-compliant RTP or a proprietary derivative. This will be used in subsequent patches to implement more Realmedia-specific extensions required to receive and parse data coming from a Realmedia server.
author rbultje
date Sun, 31 Aug 2008 03:12:13 +0000
parents 149800f1778e
children 1b6245500d8c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2652
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
1 /*
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
2 * ASF decryption
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
3 * Copyright (c) 2007 Reimar Doeffinger
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
4 *
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
5 * This file is part of FFmpeg.
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
6 *
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
11 *
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
15 * Lesser General Public License for more details.
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
16 *
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
20 */
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
21
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
22 #ifndef FFMPEG_ASFCRYPT_H
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
23 #define FFMPEG_ASFCRYPT_H
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
24
2779
149800f1778e Add missing #includes to fix 'make checkheaders'.
diego
parents: 2656
diff changeset
25 #include <inttypes.h>
149800f1778e Add missing #includes to fix 'make checkheaders'.
diego
parents: 2656
diff changeset
26
2652
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
27 void ff_asfcrypt_dec(const uint8_t key[20], uint8_t *data, int len);
2d28b2a5b2e4 Add support for decrypting asf files
reimar
parents:
diff changeset
28
2656
49bf9801a0af cosmetics: Add #endif comment.
aurel
parents: 2652
diff changeset
29 #endif /* FFMPEG_ASFCRYPT_H */