diff options
author | Clément Bœsch <u@pkh.me> | 2023-12-11 01:27:27 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2024-01-10 14:08:00 +0100 |
commit | 3885d2493d283b9e368fa7d4fdd3e626874a7a61 (patch) | |
tree | 3260ec88ce635ad85679abd2b0d0cdf5229fe5a3 /libavcodec | |
parent | d6e0fb7c928cf818d67a0b2af571c0b89d6f6704 (diff) | |
download | ffmpeg-3885d2493d283b9e368fa7d4fdd3e626874a7a61.tar.gz |
avcodec/proresenc_anatoliy: use FRAME_ID defined in proresdata.h
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/proresenc_anatoliy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c index 88be49af3e..f40e455e65 100644 --- a/libavcodec/proresenc_anatoliy.c +++ b/libavcodec/proresenc_anatoliy.c @@ -754,7 +754,7 @@ static int prores_encode_frame(AVCodecContext *avctx, AVPacket *pkt, compress_frame_size = 8 + header_size; bytestream_put_be32(&buf, compress_frame_size);/* frame size will be update after picture(s) encoding */ - bytestream_put_buffer(&buf, "icpf", 4); + bytestream_put_be32(&buf, FRAME_ID); bytestream_put_be16(&buf, header_size); bytestream_put_be16(&buf, 0); /* version */ |