2005-12-17 19:14:38 +01:00
|
|
|
/*
|
2007-10-28 23:08:09 +01:00
|
|
|
* CRC encoder (for codec/format testing)
|
2009-01-19 16:46:40 +01:00
|
|
|
* Copyright (c) 2002 Fabrice Bellard
|
2002-05-19 01:06:13 +02:00
|
|
|
*
|
2006-10-07 17:30:46 +02:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-05-26 00:34:32 +02:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 17:30:46 +02:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2002-05-19 01:06:13 +02:00
|
|
|
*
|
2006-10-07 17:30:46 +02:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2002-05-19 01:06:13 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-26 00:34:32 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2002-05-19 01:06:13 +02:00
|
|
|
*
|
2002-05-26 00:34:32 +02:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 17:30:46 +02:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 23:43:26 +01:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-05-19 01:06:13 +02:00
|
|
|
*/
|
2008-05-09 13:56:36 +02:00
|
|
|
|
2014-03-10 15:35:59 +01:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
2008-05-09 13:56:36 +02:00
|
|
|
#include "libavutil/adler32.h"
|
2002-05-19 01:06:13 +02:00
|
|
|
#include "avformat.h"
|
|
|
|
|
|
|
|
typedef struct CRCState {
|
2003-02-11 17:35:48 +01:00
|
|
|
uint32_t crcval;
|
2002-05-19 01:06:13 +02:00
|
|
|
} CRCState;
|
|
|
|
|
|
|
|
static int crc_write_header(struct AVFormatContext *s)
|
|
|
|
{
|
2002-05-20 18:31:13 +02:00
|
|
|
CRCState *crc = s->priv_data;
|
|
|
|
|
2002-05-19 01:06:13 +02:00
|
|
|
/* init CRC */
|
2006-07-19 10:39:50 +02:00
|
|
|
crc->crcval = 1;
|
2002-05-19 01:06:13 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-29 04:06:32 +02:00
|
|
|
static int crc_write_packet(struct AVFormatContext *s, AVPacket *pkt)
|
2002-05-19 01:06:13 +02:00
|
|
|
{
|
|
|
|
CRCState *crc = s->priv_data;
|
2006-07-13 23:29:01 +02:00
|
|
|
crc->crcval = av_adler32_update(crc->crcval, pkt->data, pkt->size);
|
2002-05-19 01:06:13 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int crc_write_trailer(struct AVFormatContext *s)
|
|
|
|
{
|
|
|
|
CRCState *crc = s->priv_data;
|
|
|
|
char buf[64];
|
|
|
|
|
2014-03-10 15:35:59 +01:00
|
|
|
snprintf(buf, sizeof(buf), "CRC=0x%08"PRIx32"\n", crc->crcval);
|
2011-02-21 19:28:17 +01:00
|
|
|
avio_write(s->pb, buf, strlen(buf));
|
2012-09-09 21:35:23 +02:00
|
|
|
|
2005-11-05 01:10:22 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 23:03:28 +01:00
|
|
|
AVOutputFormat ff_crc_muxer = {
|
2011-07-16 22:18:12 +02:00
|
|
|
.name = "crc",
|
2012-07-24 23:51:41 +02:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("CRC testing"),
|
2011-07-16 22:18:12 +02:00
|
|
|
.priv_data_size = sizeof(CRCState),
|
2012-08-05 11:11:04 +02:00
|
|
|
.audio_codec = AV_CODEC_ID_PCM_S16LE,
|
|
|
|
.video_codec = AV_CODEC_ID_RAWVIDEO,
|
2011-07-16 22:18:12 +02:00
|
|
|
.write_header = crc_write_header,
|
|
|
|
.write_packet = crc_write_packet,
|
|
|
|
.write_trailer = crc_write_trailer,
|
2011-11-20 12:45:36 +01:00
|
|
|
.flags = AVFMT_NOTIMESTAMPS,
|
2002-05-19 01:06:13 +02:00
|
|
|
};
|