md5enc.c 4.85 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * MD5 encoder (for codec/format testing)
 * Copyright (c) 2009 Reimar Döffinger, based on crcenc (c) 2002 Fabrice Bellard
 *
 * 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
 */

22 23 24 25
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/hash.h"
#include "libavutil/opt.h"
26
#include "avformat.h"
27
#include "internal.h"
28

29
struct MD5Context {
30 31 32
    const AVClass *avclass;
    struct AVHashContext *hash;
    char *hash_name;
33
};
34

35 36
static void md5_finish(struct AVFormatContext *s, char *buf)
{
37
    struct MD5Context *c = s->priv_data;
38
    uint8_t md5[AV_HASH_MAX_SIZE];
39
    int i, offset = strlen(buf);
40 41 42 43
    int len = av_hash_get_size(c->hash);
    av_assert0(len > 0 && len <= sizeof(md5));
    av_hash_final(c->hash, md5);
    for (i = 0; i < len; i++) {
44 45 46 47 48 49
        snprintf(buf + offset, 3, "%02"PRIx8, md5[i]);
        offset += 2;
    }
    buf[offset] = '\n';
    buf[offset+1] = 0;

50
    avio_write(s->pb, buf, strlen(buf));
51
    avio_flush(s->pb);
52 53
}

54 55 56 57 58 59 60
#define OFFSET(x) offsetof(struct MD5Context, x)
#define ENC AV_OPT_FLAG_ENCODING_PARAM
static const AVOption hash_options[] = {
    { "hash", "set hash to use", OFFSET(hash_name), AV_OPT_TYPE_STRING, {.str = "md5"}, 0, 0, ENC },
    { NULL },
};

61
static const AVClass md5enc_class = {
62 63 64 65 66 67
    .class_name = "hash encoder class",
    .item_name  = av_default_item_name,
    .option     = hash_options,
    .version    = LIBAVUTIL_VERSION_INT,
};

68
#if CONFIG_MD5_MUXER
69 70
static int write_header(struct AVFormatContext *s)
{
71
    struct MD5Context *c = s->priv_data;
72 73 74 75
    int res = av_hash_alloc(&c->hash, c->hash_name);
    if (res < 0)
        return res;
    av_hash_init(c->hash);
76 77 78 79 80
    return 0;
}

static int write_packet(struct AVFormatContext *s, AVPacket *pkt)
{
81
    struct MD5Context *c = s->priv_data;
82
    av_hash_update(c->hash, pkt->data, pkt->size);
83 84 85 86 87
    return 0;
}

static int write_trailer(struct AVFormatContext *s)
{
88
    struct MD5Context *c = s->priv_data;
89 90 91
    char buf[256];
    av_strlcpy(buf, av_hash_get_name(c->hash), sizeof(buf) - 200);
    av_strlcat(buf, "=", sizeof(buf) - 200);
92

93
    md5_finish(s, buf);
94

95
    av_hash_freep(&c->hash);
96 97 98
    return 0;
}

99
AVOutputFormat ff_md5_muxer = {
100
    .name              = "md5",
101
    .long_name         = NULL_IF_CONFIG_SMALL("MD5 testing"),
102
    .priv_data_size    = sizeof(struct MD5Context),
103 104
    .audio_codec       = AV_CODEC_ID_PCM_S16LE,
    .video_codec       = AV_CODEC_ID_RAWVIDEO,
105 106 107
    .write_header      = write_header,
    .write_packet      = write_packet,
    .write_trailer     = write_trailer,
Anton Khirnov's avatar
Anton Khirnov committed
108
    .flags             = AVFMT_NOTIMESTAMPS,
109
    .priv_class        = &md5enc_class,
110
};
111 112 113
#endif

#if CONFIG_FRAMEMD5_MUXER
114 115 116
static int framemd5_write_header(struct AVFormatContext *s)
{
    struct MD5Context *c = s->priv_data;
117 118 119
    int res = av_hash_alloc(&c->hash, c->hash_name);
    if (res < 0)
        return res;
120 121 122
    return ff_framehash_write_header(s);
}

123 124
static int framemd5_write_packet(struct AVFormatContext *s, AVPacket *pkt)
{
125
    struct MD5Context *c = s->priv_data;
126
    char buf[256];
127 128
    av_hash_init(c->hash);
    av_hash_update(c->hash, pkt->data, pkt->size);
129

130 131
    snprintf(buf, sizeof(buf) - 64, "%d, %10"PRId64", %10"PRId64", %8d, %8d, ",
             pkt->stream_index, pkt->dts, pkt->pts, pkt->duration, pkt->size);
132 133 134 135
    md5_finish(s, buf);
    return 0;
}

136 137 138
static int framemd5_write_trailer(struct AVFormatContext *s)
{
    struct MD5Context *c = s->priv_data;
139
    av_hash_freep(&c->hash);
140 141 142
    return 0;
}

143
static const AVClass framemd5_class = {
144
    .class_name = "frame hash encoder class",
145 146 147 148 149
    .item_name  = av_default_item_name,
    .option     = hash_options,
    .version    = LIBAVUTIL_VERSION_INT,
};

150
AVOutputFormat ff_framemd5_muxer = {
151
    .name              = "framemd5",
152
    .long_name         = NULL_IF_CONFIG_SMALL("Per-frame MD5 testing"),
153
    .priv_data_size    = sizeof(struct MD5Context),
154 155
    .audio_codec       = AV_CODEC_ID_PCM_S16LE,
    .video_codec       = AV_CODEC_ID_RAWVIDEO,
156
    .write_header      = framemd5_write_header,
157
    .write_packet      = framemd5_write_packet,
158
    .write_trailer     = framemd5_write_trailer,
159 160
    .flags             = AVFMT_VARIABLE_FPS | AVFMT_TS_NONSTRICT |
                         AVFMT_TS_NEGATIVE,
161
    .priv_class        = &framemd5_class,
162 163
};
#endif