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