Просмотр исходного кода

probetest: replace usage of deprecated first_iformat by av_iformat_next()

Originally committed as revision 25490 to svn://svn.ffmpeg.org/ffmpeg/trunk
Aurelien Jacobs 14 лет назад
Родитель
Сommit
ad2d0fdf25
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      tools/probetest.c

+ 2 - 2
tools/probetest.c

@@ -30,9 +30,9 @@ static int failures = 0;
 static void probe(AVProbeData *pd, int type, int p, int size)
 static void probe(AVProbeData *pd, int type, int p, int size)
 {
 {
     int i = 0;
     int i = 0;
-    AVInputFormat *fmt;
+    AVInputFormat *fmt = NULL;
 
 
-    for (fmt = first_iformat; fmt != NULL; fmt = fmt->next) {
+    while ((fmt = av_iformat_next(fmt))) {
         if (fmt->flags & AVFMT_NOFILE)
         if (fmt->flags & AVFMT_NOFILE)
             continue;
             continue;
         if (fmt->read_probe) {
         if (fmt->read_probe) {