~ubuntu-branches/ubuntu/trusty/libav/trusty

« back to all changes in this revision

Viewing changes to libavformat/md5enc.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2011-04-19 15:04:55 UTC
  • mfrom: (1.2.1 upstream)
  • mto: (1.3.4 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20110419150455-c1nac6gjm3t2aa4n
Tags: 4:0.7~b1-1
* New upstream version
* bump SONAME and SHLIBS
* configure flags --disable-stripping was removed upstream
* the MAINTAINERS file was removed upstream
* remove patch disable-configuration-warning.patch
* drop avfilter confflags, it is enable by default in 0.7
* libfaad wrapper has been removed upstream
* also update the *contents* of the lintian overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * MD5 encoder (for codec/format testing)
 
3
 * Copyright (c) 2009 Reimar Döffinger, based on crcenc (c) 2002 Fabrice Bellard
 
4
 *
 
5
 * This file is part of Libav.
 
6
 *
 
7
 * Libav is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Lesser General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2.1 of the License, or (at your option) any later version.
 
11
 *
 
12
 * Libav is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * Lesser General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Lesser General Public
 
18
 * License along with Libav; if not, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
20
 */
 
21
 
 
22
#include "libavutil/md5.h"
 
23
#include "avformat.h"
 
24
 
 
25
#define PRIVSIZE 512
 
26
 
 
27
static void md5_finish(struct AVFormatContext *s, char *buf)
 
28
{
 
29
    uint8_t md5[16];
 
30
    int i, offset = strlen(buf);
 
31
    av_md5_final(s->priv_data, md5);
 
32
    for (i = 0; i < sizeof(md5); i++) {
 
33
        snprintf(buf + offset, 3, "%02"PRIx8, md5[i]);
 
34
        offset += 2;
 
35
    }
 
36
    buf[offset] = '\n';
 
37
    buf[offset+1] = 0;
 
38
 
 
39
    avio_write(s->pb, buf, strlen(buf));
 
40
    avio_flush(s->pb);
 
41
}
 
42
 
 
43
#if CONFIG_MD5_MUXER
 
44
static int write_header(struct AVFormatContext *s)
 
45
{
 
46
    if (PRIVSIZE < av_md5_size) {
 
47
        av_log(s, AV_LOG_ERROR, "Insuffient size for md5 context\n");
 
48
        return -1;
 
49
    }
 
50
    av_md5_init(s->priv_data);
 
51
    return 0;
 
52
}
 
53
 
 
54
static int write_packet(struct AVFormatContext *s, AVPacket *pkt)
 
55
{
 
56
    av_md5_update(s->priv_data, pkt->data, pkt->size);
 
57
    return 0;
 
58
}
 
59
 
 
60
static int write_trailer(struct AVFormatContext *s)
 
61
{
 
62
    char buf[64] = "MD5=";
 
63
 
 
64
    md5_finish(s, buf);
 
65
    return 0;
 
66
}
 
67
 
 
68
AVOutputFormat ff_md5_muxer = {
 
69
    "md5",
 
70
    NULL_IF_CONFIG_SMALL("MD5 testing format"),
 
71
    NULL,
 
72
    "",
 
73
    PRIVSIZE,
 
74
    CODEC_ID_PCM_S16LE,
 
75
    CODEC_ID_RAWVIDEO,
 
76
    write_header,
 
77
    write_packet,
 
78
    write_trailer,
 
79
};
 
80
#endif
 
81
 
 
82
#if CONFIG_FRAMEMD5_MUXER
 
83
static int framemd5_write_packet(struct AVFormatContext *s, AVPacket *pkt)
 
84
{
 
85
    char buf[256];
 
86
    if (PRIVSIZE < av_md5_size) {
 
87
        av_log(s, AV_LOG_ERROR, "Insuffient size for md5 context\n");
 
88
        return -1;
 
89
    }
 
90
    av_md5_init(s->priv_data);
 
91
    av_md5_update(s->priv_data, pkt->data, pkt->size);
 
92
 
 
93
    snprintf(buf, sizeof(buf) - 64, "%d, %"PRId64", %d, ", pkt->stream_index, pkt->dts, pkt->size);
 
94
    md5_finish(s, buf);
 
95
    return 0;
 
96
}
 
97
 
 
98
AVOutputFormat ff_framemd5_muxer = {
 
99
    "framemd5",
 
100
    NULL_IF_CONFIG_SMALL("Per-frame MD5 testing format"),
 
101
    NULL,
 
102
    "",
 
103
    PRIVSIZE,
 
104
    CODEC_ID_PCM_S16LE,
 
105
    CODEC_ID_RAWVIDEO,
 
106
    NULL,
 
107
    framemd5_write_packet,
 
108
    NULL,
 
109
};
 
110
#endif