diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-03 14:47:11 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-03 14:47:11 +0200 |
commit | 8bdd0dbd60b0c09376da34e661cf53ff73256bfd (patch) | |
tree | 15d5670d729ad7addb567e926f177f30f4f898a0 /libavcodec/videotoolbox.c | |
parent | 6b0fa73b4d47567c129b497b046111082373677d (diff) | |
download | ffmpeg-8bdd0dbd60b0c09376da34e661cf53ff73256bfd.tar.gz |
avcodec/videotoolbox: Add missing AV_ prefix to CODEC_ID in comment
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/videotoolbox.c')
-rw-r--r-- | libavcodec/videotoolbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/videotoolbox.c b/libavcodec/videotoolbox.c index 6db80a272f..b78238ae37 100644 --- a/libavcodec/videotoolbox.c +++ b/libavcodec/videotoolbox.c @@ -217,7 +217,7 @@ static CFDataRef videotoolbox_esds_extradata_create(AVCodecContext *avctx) // decoder configuration descriptor bytestream2_put_byteu(&pb, 0x04); // DecoderConfigDescrTag videotoolbox_write_mp4_descr_length(&pb, config_size); - bytestream2_put_byteu(&pb, 32); // object type indication. 32 = CODEC_ID_MPEG4 + bytestream2_put_byteu(&pb, 32); // object type indication. 32 = AV_CODEC_ID_MPEG4 bytestream2_put_byteu(&pb, 0x11); // stream type bytestream2_put_ne24(&pb, 0); // buffer size bytestream2_put_ne32(&pb, 0); // max bitrate |