]> git.sesse.net Git - ffmpeg/blobdiff - fftools/ffprobe.c
fate: add adpcm_ima_ws test in a VQA v3 file
[ffmpeg] / fftools / ffprobe.c
index a2cb7dc9868bbca26d6c7e51f4d2228726bd19f5..7b28f6b3ce31126aff9639be89ee810ca7390483 100644 (file)
@@ -257,7 +257,7 @@ static const OptionDef *options;
 /* FFprobe context */
 static const char *input_filename;
 static const char *print_input_filename;
-static AVInputFormat *iformat = NULL;
+static const AVInputFormat *iformat = NULL;
 
 static struct AVHashContext *hash;
 
@@ -2158,7 +2158,7 @@ static void show_packet(WriterContext *w, InputFile *ifile, AVPacket *pkt, int p
               pkt->flags & AV_PKT_FLAG_DISCARD ? 'D' : '_');
 
     if (pkt->side_data_elems) {
-        int size;
+        size_t size;
         const uint8_t *side_metadata;
 
         side_metadata = av_packet_get_side_data(pkt, AV_PKT_DATA_STRINGS_METADATA, &size);