2005-12-17 18:14:38 +00:00
|
|
|
/*
|
2002-05-18 23:06:13 +00:00
|
|
|
* CRC decoder (for codec/format testing)
|
2002-05-25 22:34:32 +00:00
|
|
|
* Copyright (c) 2002 Fabrice Bellard.
|
2002-05-18 23:06:13 +00:00
|
|
|
*
|
2002-05-25 22:34:32 +00:00
|
|
|
* This library 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 of the License, or (at your option) any later version.
|
2002-05-18 23:06:13 +00:00
|
|
|
*
|
2002-05-25 22:34:32 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2002-05-18 23:06:13 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-25 22:34:32 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2002-05-18 23:06:13 +00:00
|
|
|
*
|
2002-05-25 22:34:32 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-05-18 23:06:13 +00:00
|
|
|
*/
|
|
|
|
#include "avformat.h"
|
2006-07-13 21:29:01 +00:00
|
|
|
#include "adler32.h"
|
2002-05-18 23:06:13 +00:00
|
|
|
|
2006-07-10 21:14:37 +00:00
|
|
|
#ifdef CONFIG_CRC_MUXER
|
2002-05-18 23:06:13 +00:00
|
|
|
typedef struct CRCState {
|
2003-02-11 16:35:48 +00:00
|
|
|
uint32_t crcval;
|
2002-05-18 23:06:13 +00:00
|
|
|
} CRCState;
|
|
|
|
|
|
|
|
static int crc_write_header(struct AVFormatContext *s)
|
|
|
|
{
|
2002-05-20 16:31:13 +00:00
|
|
|
CRCState *crc = s->priv_data;
|
|
|
|
|
2002-05-18 23:06:13 +00:00
|
|
|
/* init CRC */
|
2006-07-19 08:39:50 +00:00
|
|
|
crc->crcval = 1;
|
2002-05-18 23:06:13 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-29 02:06:32 +00:00
|
|
|
static int crc_write_packet(struct AVFormatContext *s, AVPacket *pkt)
|
2002-05-18 23:06:13 +00:00
|
|
|
{
|
|
|
|
CRCState *crc = s->priv_data;
|
2006-07-13 21:29:01 +00:00
|
|
|
crc->crcval = av_adler32_update(crc->crcval, pkt->data, pkt->size);
|
2002-05-18 23:06:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int crc_write_trailer(struct AVFormatContext *s)
|
|
|
|
{
|
|
|
|
CRCState *crc = s->priv_data;
|
|
|
|
char buf[64];
|
|
|
|
|
2005-11-05 00:10:22 +00: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-10 21:14:37 +00:00
|
|
|
#endif
|
2005-11-05 00:10:22 +00:00
|
|
|
|
2006-07-10 21:14:37 +00:00
|
|
|
#ifdef CONFIG_FRAMECRC_MUXER
|
2005-11-05 00:10:22 +00:00
|
|
|
static int framecrc_write_packet(struct AVFormatContext *s, AVPacket *pkt)
|
|
|
|
{
|
2006-07-13 21:29:01 +00:00
|
|
|
uint32_t crc = av_adler32_update(0, pkt->data, pkt->size);
|
2005-11-05 00:10:22 +00:00
|
|
|
char buf[256];
|
|
|
|
|
2005-12-12 01:56:46 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%d, %"PRId64", %d, 0x%08x\n", pkt->stream_index, pkt->dts, pkt->size, crc);
|
2002-05-18 23:06:13 +00:00
|
|
|
put_buffer(&s->pb, buf, strlen(buf));
|
|
|
|
put_flush_packet(&s->pb);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-07-10 21:14:37 +00:00
|
|
|
#endif
|
2002-05-18 23:06:13 +00:00
|
|
|
|
2006-07-10 21:14:37 +00:00
|
|
|
#ifdef CONFIG_CRC_MUXER
|
|
|
|
AVOutputFormat crc_muxer = {
|
2002-05-18 23:06:13 +00:00
|
|
|
"crc",
|
|
|
|
"crc testing format",
|
|
|
|
NULL,
|
|
|
|
"",
|
2002-05-20 16:31:13 +00:00
|
|
|
sizeof(CRCState),
|
2002-05-18 23:06:13 +00:00
|
|
|
CODEC_ID_PCM_S16LE,
|
|
|
|
CODEC_ID_RAWVIDEO,
|
|
|
|
crc_write_header,
|
|
|
|
crc_write_packet,
|
|
|
|
crc_write_trailer,
|
|
|
|
};
|
2006-07-10 21:14:37 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_FRAMECRC_MUXER
|
|
|
|
AVOutputFormat framecrc_muxer = {
|
2005-11-05 00:10:22 +00:00
|
|
|
"framecrc",
|
|
|
|
"framecrc testing format",
|
|
|
|
NULL,
|
|
|
|
"",
|
|
|
|
0,
|
|
|
|
CODEC_ID_PCM_S16LE,
|
|
|
|
CODEC_ID_RAWVIDEO,
|
|
|
|
NULL,
|
|
|
|
framecrc_write_packet,
|
|
|
|
NULL,
|
|
|
|
};
|
2006-07-10 21:14:37 +00:00
|
|
|
#endif
|