]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/hevcdec.c
Merge commit 'eb5920c195d1b0bda81782af4ba0c5982f5225b3'
[ffmpeg] / libavformat / hevcdec.c
index 88abcc6ab20df287af2e9222260f35584e37074e..e36a0513e3f4a2391af98ab4230ad0bc06c6a7d1 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include "libavcodec/hevc.h"
+
 #include "avformat.h"
 #include "rawdec.h"
 
-#include "libavcodec/hevc.h"
-
 static int hevc_probe(AVProbeData *p)
 {
     uint32_t code = -1;
@@ -56,8 +56,6 @@ static int hevc_probe(AVProbeData *p)
         }
     }
 
-    // printf("vps=%d, sps=%d, pps=%d, irap=%d\n", vps, sps, pps, irap);
-
     if (vps && sps && pps && irap)
         return AVPROBE_SCORE_EXTENSION + 1; // 1 more than .mpg
     return 0;