mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
c6ae560a18
There are no guarantees that all side data types have the same representation on all platforms. Tests that change output due to this: id3v2-priv-remux, cover-art-mp3-id3v2-remux, gapless-mp3: SKIP_SAMPLES, which is tested by fate-gapless-mp3-side-data matroska-vp8-alpha-remux: MATROSKA_BLOCKADDITIONAL, which is tested by remux itself (side data is written into output) matroska-mastering-display-metadata: MASTERING_DISPLAY_METADATA and CONTENT_LIGHT_LEVEL, which are tested by ffprobe invocation in the same test matroska-spherical-mono-remux: STEREO3D and SPHERICAL, which are tested by ffprobe invocation in the same test segment-mp4-to-ts: MPEGTS_STREAM_ID, which is tested by ts remuxing tests webm-webvtt-remux: WEBVTT_IDENTIFIER/SETTINGS, which is tested by the ffprobe invocation in the same test mxf-d10-user-comments: CPB_PROPERTIES, which is tested by mxf-probe-d10 mov-cover-image: SKIP_SAMPLES, which is tested for mov by mov-aac-2048-priming copy-trac3074: AUDIO_SERVICE_TYPE, which is tested by fate-hls-fmp4_ac3
69 lines
2.4 KiB
C
69 lines
2.4 KiB
C
/*
|
|
* frame CRC encoder (for codec/format testing)
|
|
* Copyright (c) 2002 Fabrice Bellard
|
|
*
|
|
* This file is part of FFmpeg.
|
|
*
|
|
* FFmpeg 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.1 of the License, or (at your option) any later version.
|
|
*
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include "libavutil/adler32.h"
|
|
#include "libavcodec/avcodec.h"
|
|
#include "avformat.h"
|
|
#include "internal.h"
|
|
|
|
static int framecrc_write_header(struct AVFormatContext *s)
|
|
{
|
|
int i;
|
|
for (i = 0; i < s->nb_streams; i++) {
|
|
AVStream *st = s->streams[i];
|
|
AVCodecParameters *par = st->codecpar;
|
|
if (par->extradata) {
|
|
uint32_t crc = av_adler32_update(0, par->extradata, par->extradata_size);
|
|
avio_printf(s->pb, "#extradata %d: %8d, 0x%08"PRIx32"\n",
|
|
i, par->extradata_size, crc);
|
|
}
|
|
}
|
|
|
|
return ff_framehash_write_header(s);
|
|
}
|
|
|
|
static int framecrc_write_packet(struct AVFormatContext *s, AVPacket *pkt)
|
|
{
|
|
uint32_t crc = av_adler32_update(0, pkt->data, pkt->size);
|
|
char buf[256];
|
|
|
|
snprintf(buf, sizeof(buf), "%d, %10"PRId64", %10"PRId64", %8"PRId64", %8d, 0x%08"PRIx32,
|
|
pkt->stream_index, pkt->dts, pkt->pts, pkt->duration, pkt->size, crc);
|
|
if (pkt->flags != AV_PKT_FLAG_KEY)
|
|
av_strlcatf(buf, sizeof(buf), ", F=0x%0X", pkt->flags);
|
|
av_strlcatf(buf, sizeof(buf), "\n");
|
|
avio_write(s->pb, buf, strlen(buf));
|
|
return 0;
|
|
}
|
|
|
|
const AVOutputFormat ff_framecrc_muxer = {
|
|
.name = "framecrc",
|
|
.long_name = NULL_IF_CONFIG_SMALL("framecrc testing"),
|
|
.audio_codec = AV_CODEC_ID_PCM_S16LE,
|
|
.video_codec = AV_CODEC_ID_RAWVIDEO,
|
|
.write_header = framecrc_write_header,
|
|
.write_packet = framecrc_write_packet,
|
|
.flags = AVFMT_VARIABLE_FPS | AVFMT_TS_NONSTRICT |
|
|
AVFMT_TS_NEGATIVE,
|
|
};
|