diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-29 17:35:00 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-29 20:08:09 +0200 |
commit | 85b221e4d3e7f42cfcf4a491b357b137f731e9d6 (patch) | |
tree | 7aa4d435165e07aa7399f7851f7929e5b22a3a23 /libavcodec/dpxenc.c | |
parent | 07ec1f21404e2b97d18f1b1b9324ca0ec5ea81e6 (diff) | |
download | ffmpeg-85b221e4d3e7f42cfcf4a491b357b137f731e9d6.tar.gz |
dpxenc: Don't include the libavcodec ident if bitexact mode is enabled
This avoids breaking fate every time the lavc version is bumped.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/dpxenc.c')
-rw-r--r-- | libavcodec/dpxenc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dpxenc.c b/libavcodec/dpxenc.c index c731bb44c5..89548ba0c3 100644 --- a/libavcodec/dpxenc.c +++ b/libavcodec/dpxenc.c @@ -126,7 +126,8 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, memcpy (buf + 8, "V1.0", 4); write32(buf + 20, 1); /* new image */ write32(buf + 24, HEADER_SIZE); - memcpy (buf + 160, LIBAVCODEC_IDENT, FFMIN(sizeof(LIBAVCODEC_IDENT), 100)); + if (!(avctx->flags & CODEC_FLAG_BITEXACT)) + memcpy (buf + 160, LIBAVCODEC_IDENT, FFMIN(sizeof(LIBAVCODEC_IDENT), 100)); write32(buf + 660, 0xFFFFFFFF); /* unencrypted */ /* Image information header */ |