diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2010-11-16 01:00:55 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2010-11-16 01:00:55 +0000 |
commit | 9d9c3e1a70207e28bf81a4026902582ddfd60058 (patch) | |
tree | ff24e819d81e93f7c18cb9e0b365fc031547dccf /libavcodec | |
parent | dd22cfb1015dea8f9db29a2334662bd35c3d3f79 (diff) | |
download | ffmpeg-9d9c3e1a70207e28bf81a4026902582ddfd60058.tar.gz |
Make DNxHD encoder produce files that are strictly VC-3 compatible
Originally committed as revision 25756 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dnxhdenc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c index 6b089299e9..8cf54c5dc7 100644 --- a/libavcodec/dnxhdenc.c +++ b/libavcodec/dnxhdenc.c @@ -239,12 +239,12 @@ static int dnxhd_write_header(AVCodecContext *avctx, uint8_t *buf) buf[5] = ctx->interlaced ? ctx->cur_field+2 : 0x01; buf[6] = 0x80; // crc flag off buf[7] = 0xa0; // reserved - AV_WB16(buf + 0x18, avctx->height); // ALPF + AV_WB16(buf + 0x18, avctx->height>>ctx->interlaced); // ALPF AV_WB16(buf + 0x1a, avctx->width); // SPL - AV_WB16(buf + 0x1d, avctx->height); // NAL + AV_WB16(buf + 0x1d, avctx->height>>ctx->interlaced); // NAL buf[0x21] = 0x38; // FIXME 8 bit per comp - buf[0x22] = 0x88 + (ctx->frame.interlaced_frame<<2); + buf[0x22] = 0x88 + (ctx->interlaced<<2); AV_WB32(buf + 0x28, ctx->cid); // CID buf[0x2c] = ctx->interlaced ? 0 : 0x80; |