summaryrefslogtreecommitdiff
path: root/libavformat/hls_sample_encryption.h
blob: d86eccb74ce01198d310f17a96d7259325fc242c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 * Apple HTTP Live Streaming Sample Encryption/Decryption
 *
 * Copyright (c) 2021 Nachiket Tarate
 *
 * 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
 */

/**
 * @file
 * Apple HTTP Live Streaming Sample Encryption
 * https://developer.apple.com/library/ios/documentation/AudioVideo/Conceptual/HLS_Sample_Encryption
 */

#ifndef AVFORMAT_HLS_SAMPLE_ENCRYPTION_H
#define AVFORMAT_HLS_SAMPLE_ENCRYPTION_H

#include <stddef.h>
#include <stdint.h>

#include "libavcodec/codec_id.h"
#include "libavcodec/packet.h"
#include "avformat.h"


#define HLS_MAX_ID3_TAGS_DATA_LEN       138
#define HLS_MAX_AUDIO_SETUP_DATA_LEN    10

typedef struct HLSCryptoContext {
    struct AVAES    *aes_ctx;
    uint8_t         key[16];
    uint8_t         iv[16];
} HLSCryptoContext;

typedef struct HLSAudioSetupInfo {
    enum AVCodecID      codec_id;
    uint32_t            codec_tag;
    uint16_t            priming;
    uint8_t             version;
    uint8_t             setup_data_length;
    uint8_t             setup_data[HLS_MAX_AUDIO_SETUP_DATA_LEN];
} HLSAudioSetupInfo;


void ff_hls_senc_read_audio_setup_info(HLSAudioSetupInfo *info, const uint8_t *buf, size_t size);

int ff_hls_senc_parse_audio_setup_info(AVStream *st, HLSAudioSetupInfo *info);

int ff_hls_senc_decrypt_frame(enum AVCodecID codec_id, HLSCryptoContext *crypto_ctx, AVPacket *pkt);

#endif /* AVFORMAT_HLS_SAMPLE_ENCRYPTION_H */