comparison oggdec.c @ 6116:49eedb93140e libavformat

Fix printf format warnings patch by Eli Friedman <eli dot friedman at gmail dot com>
author siretart
date Wed, 09 Jun 2010 08:59:41 +0000
parents 4bedd06c54e2
children
comparison
equal deleted inserted replaced
6115:4c91cdcb8a52 6116:49eedb93140e
361 "ogg_packet: idx %i, frame size %i, start %i\n", 361 "ogg_packet: idx %i, frame size %i, start %i\n",
362 idx, os->psize, os->pstart); 362 idx, os->psize, os->pstart);
363 #endif 363 #endif
364 364
365 if (os->granule == -1) 365 if (os->granule == -1)
366 av_log(s, AV_LOG_WARNING, "Page at %lld is missing granule\n", os->page_pos); 366 av_log(s, AV_LOG_WARNING, "Page at %"PRId64" is missing granule\n", os->page_pos);
367 367
368 ogg->curidx = idx; 368 ogg->curidx = idx;
369 os->incomplete = 0; 369 os->incomplete = 0;
370 370
371 if (os->header) { 371 if (os->header) {