Commit 5c047f3a authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/j2kenc: store libavcodec ident in a comment unless bitexact mode is used

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e91f860e
......@@ -317,6 +317,26 @@ static int put_qcd(Jpeg2000EncoderContext *s, int compno)
return 0;
}
static int put_com(Jpeg2000EncoderContext *s, int compno)
{
int i;
int size = 4 + strlen(LIBAVCODEC_IDENT);
if (s->avctx->flags & CODEC_FLAG_BITEXACT)
return 0;
if (s->buf_end - s->buf < size + 2)
return -1;
bytestream_put_be16(&s->buf, JPEG2000_COM);
bytestream_put_be16(&s->buf, size);
bytestream_put_be16(&s->buf, 1); // General use (ISO/IEC 8859-15 (Latin) values)
bytestream_put_buffer(&s->buf, LIBAVCODEC_IDENT, strlen(LIBAVCODEC_IDENT));
return 0;
}
static uint8_t *put_sot(Jpeg2000EncoderContext *s, int tileno)
{
uint8_t *psotptr;
......@@ -1010,6 +1030,8 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
return ret;
if ((ret = put_qcd(s, 0)) < 0)
return ret;
if ((ret = put_com(s, 0)) < 0)
return ret;
for (tileno = 0; tileno < s->numXtiles * s->numYtiles; tileno++){
uint8_t *psotptr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment