]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/iss.c
Reindent after r23361.
[ffmpeg] / libavformat / iss.c
index 891729a2b57c507384ced5ccd9b333cbb80696fa..156af976ca1cecf1174961ea559a5734beca9d25 100644 (file)
@@ -20,7 +20,7 @@
  */
 
 /**
- * @file libavformat/iss.c
+ * @file
  * Funcom ISS file demuxer
  * @author Jaikrishnan Menon
  * for more information on the .iss file format, visit:
@@ -92,7 +92,7 @@ static av_cold int iss_read_header(AVFormatContext *s, AVFormatParameters *ap)
     st = av_new_stream(s, 0);
     if (!st)
         return AVERROR(ENOMEM);
-    st->codec->codec_type = CODEC_TYPE_AUDIO;
+    st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
     st->codec->codec_id = CODEC_ID_ADPCM_IMA_ISS;
     st->codec->channels = stereo ? 2 : 1;
     st->codec->sample_rate = 44100;