]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/id3v2enc.c
Replace all CODEC_ID_* with AV_CODEC_ID_*
[ffmpeg] / libavformat / id3v2enc.c
index 624333609b3b94be4c413acd461b051209ea3753..df00f05b241c5b4f8f9d2ec063eb1ac41c6795b4 100644 (file)
@@ -169,7 +169,7 @@ int ff_id3v2_write_apic(AVFormatContext *s, ID3v2EncContext *id3, AVPacket *pkt)
     int i, len, type = 0;
 
     /* get the mimetype*/
-    while (mime->id != CODEC_ID_NONE) {
+    while (mime->id != AV_CODEC_ID_NONE) {
         if (mime->id == st->codec->codec_id) {
             mimetype = mime->str;
             break;