]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/ape.c
get_bits/put_bits: K&R formatting cosmetics
[ffmpeg] / libavformat / ape.c
index 76ad549117de950146f739dda74a8313a3c73625..d67e684167b40635cac8568074b8f8a70e620b6b 100644 (file)
@@ -324,7 +324,7 @@ static int ape_read_header(AVFormatContext * s)
     total_blocks = (ape->totalframes == 0) ? 0 : ((ape->totalframes - 1) * ape->blocksperframe) + ape->finalframeblocks;
 
     st->codec->codec_type      = AVMEDIA_TYPE_AUDIO;
-    st->codec->codec_id        = CODEC_ID_APE;
+    st->codec->codec_id        = AV_CODEC_ID_APE;
     st->codec->codec_tag       = MKTAG('A', 'P', 'E', ' ');
     st->codec->channels        = ape->channels;
     st->codec->sample_rate     = ape->samplerate;