2005-12-17 20:14:38 +02:00
|
|
|
/*
|
2002-05-19 02:06:13 +03:00
|
|
|
* CRC decoder (for codec/format testing)
|
2002-05-26 01:34:32 +03:00
|
|
|
* Copyright (c) 2002 Fabrice Bellard.
|
2002-05-19 02:06:13 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg 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
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg 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
|
2006-10-07 18:30:46 +03:00
|
|
|
* License along with FFmpeg; 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
|
|
|
*/
|
|
|
|
#include "avformat.h"
|
2006-07-14 00:29:01 +03:00
|
|
|
#include "adler32.h"
|
2002-05-19 02:06:13 +03:00
|
|
|
|
2006-07-11 00:14:37 +03:00
|
|
|
#ifdef CONFIG_CRC_MUXER
|
2002-05-19 02:06:13 +03:00
|
|
|
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);
|
|
|
|
put_buffer(&s->pb, buf, strlen(buf));
|
|
|
|
put_flush_packet(&s->pb);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-07-11 00:14:37 +03:00
|
|
|
#endif
|
2005-11-05 02:10:22 +02:00
|
|
|
|
2006-07-11 00:14:37 +03:00
|
|
|
#ifdef CONFIG_FRAMECRC_MUXER
|
2005-11-05 02:10:22 +02:00
|
|
|
static int framecrc_write_packet(struct AVFormatContext *s, AVPacket *pkt)
|
|
|
|
{
|
2006-07-14 00:29:01 +03:00
|
|
|
uint32_t crc = av_adler32_update(0, pkt->data, pkt->size);
|
2005-11-05 02:10:22 +02:00
|
|
|
char buf[256];
|
|
|
|
|
2005-12-12 03:56:46 +02:00
|
|
|
snprintf(buf, sizeof(buf), "%d, %"PRId64", %d, 0x%08x\n", pkt->stream_index, pkt->dts, pkt->size, crc);
|
2002-05-19 02:06:13 +03:00
|
|
|
put_buffer(&s->pb, buf, strlen(buf));
|
|
|
|
put_flush_packet(&s->pb);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-07-11 00:14:37 +03:00
|
|
|
#endif
|
2002-05-19 02:06:13 +03:00
|
|
|
|
2006-07-11 00:14:37 +03:00
|
|
|
#ifdef CONFIG_CRC_MUXER
|
|
|
|
AVOutputFormat crc_muxer = {
|
2002-05-19 02:06:13 +03:00
|
|
|
"crc",
|
|
|
|
"crc testing format",
|
|
|
|
NULL,
|
|
|
|
"",
|
2002-05-20 19:31:13 +03:00
|
|
|
sizeof(CRCState),
|
2002-05-19 02:06:13 +03:00
|
|
|
CODEC_ID_PCM_S16LE,
|
|
|
|
CODEC_ID_RAWVIDEO,
|
|
|
|
crc_write_header,
|
|
|
|
crc_write_packet,
|
|
|
|
crc_write_trailer,
|
|
|
|
};
|
2006-07-11 00:14:37 +03:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_FRAMECRC_MUXER
|
|
|
|
AVOutputFormat framecrc_muxer = {
|
2005-11-05 02:10:22 +02:00
|
|
|
"framecrc",
|
|
|
|
"framecrc testing format",
|
|
|
|
NULL,
|
|
|
|
"",
|
|
|
|
0,
|
|
|
|
CODEC_ID_PCM_S16LE,
|
|
|
|
CODEC_ID_RAWVIDEO,
|
|
|
|
NULL,
|
|
|
|
framecrc_write_packet,
|
|
|
|
NULL,
|
|
|
|
};
|
2006-07-11 00:14:37 +03:00
|
|
|
#endif
|