Mercurial > libavformat.hg
annotate framecrcenc.c @ 3807:24113c3ebeaf libavformat
always write required version string local tag
author | bcoudurier |
---|---|
date | Sat, 30 Aug 2008 22:37:19 +0000 |
parents | 7a0230981402 |
children | 77e0c7511d41 |
rev | line source |
---|---|
885 | 1 /* |
2679 | 2 * frame CRC encoder (for codec/format testing) |
0 | 3 * Copyright (c) 2002 Fabrice Bellard. |
4 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1182
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1182
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1182
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
0 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1182
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
0 | 11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1182
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
0 | 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 | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1182
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
885
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 20 */ |
3286 | 21 |
22 #include "libavutil/adler32.h" | |
0 | 23 #include "avformat.h" |
24 | |
870 | 25 static int framecrc_write_packet(struct AVFormatContext *s, AVPacket *pkt) |
26 { | |
1176 | 27 uint32_t crc = av_adler32_update(0, pkt->data, pkt->size); |
870 | 28 char buf[256]; |
29 | |
881 | 30 snprintf(buf, sizeof(buf), "%d, %"PRId64", %d, 0x%08x\n", pkt->stream_index, pkt->dts, pkt->size, crc); |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2679
diff
changeset
|
31 put_buffer(s->pb, buf, strlen(buf)); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2679
diff
changeset
|
32 put_flush_packet(s->pb); |
0 | 33 return 0; |
34 } | |
35 | |
1169 | 36 AVOutputFormat framecrc_muxer = { |
870 | 37 "framecrc", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3286
diff
changeset
|
38 NULL_IF_CONFIG_SMALL("framecrc testing format"), |
870 | 39 NULL, |
40 "", | |
41 0, | |
42 CODEC_ID_PCM_S16LE, | |
43 CODEC_ID_RAWVIDEO, | |
44 NULL, | |
45 framecrc_write_packet, | |
46 NULL, | |
47 }; |