annotate framecrcenc.c @ 6259:7b2f50760dfb libavformat

matroskaenc: write DisplayUnit element to better match the spec This makes it clear that we are specifying the aspect ratio, and not the intended display size in pixels.
author aurel
date Wed, 14 Jul 2010 19:36:14 +0000
parents 77e0c7511d41
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 881
diff changeset
1 /*
2679
646c70612cb6 move framecrc muxer in its own file
aurel
parents: 1358
diff changeset
2 * frame CRC encoder (for codec/format testing)
4251
77e0c7511d41 cosmetics: Remove pointless period after copyright statement non-sentences.
diego
parents: 3424
diff changeset
3 * Copyright (c) 2002 Fabrice Bellard
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
15 * Lesser General Public License for more details.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
16 *
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
20 */
3286
6f61c3b36632 Use full path for #includes from another directory.
diego
parents: 2771
diff changeset
21
6f61c3b36632 Use full path for #includes from another directory.
diego
parents: 2771
diff changeset
22 #include "libavutil/adler32.h"
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
23 #include "avformat.h"
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
24
870
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
25 static int framecrc_write_packet(struct AVFormatContext *s, AVPacket *pkt)
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
26 {
1176
bfea7dcd2698 move adler32 to libavutil
mru
parents: 1169
diff changeset
27 uint32_t crc = av_adler32_update(0, pkt->data, pkt->size);
870
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
28 char buf[256];
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
29
881
91dcb9da9be6 use PRIxN, %zd, %td formats where needed
mru
parents: 870
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
33 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
34 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
35
1169
d18cc9a1fd02 allow individual selection of muxers and demuxers
mru
parents: 1167
diff changeset
36 AVOutputFormat framecrc_muxer = {
870
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
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
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
39 NULL,
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
40 "",
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
41 0,
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
42 CODEC_ID_PCM_S16LE,
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
43 CODEC_ID_RAWVIDEO,
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
44 NULL,
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
45 framecrc_write_packet,
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
46 NULL,
16df90bf46fd per frame crc support
michael
parents: 468
diff changeset
47 };