* Make JPEG resolution parsing work properly on big-endian systems.

This commit is contained in:
Justin Maggard
2009-11-06 19:03:56 +00:00
parent a26802539f
commit 516b025eca
2 changed files with 6 additions and 6 deletions

View File

@ -968,7 +968,7 @@ GetVideoMetadata(const char * path, char * name)
else if( strcmp(ctx->iformat->name, "flv") == 0 )
asprintf(&m.mime, "video/x-flv");
else
DPRINTF(E_WARN, L_METADATA, "Unhandled format: %s\n", ctx->iformat->name);
DPRINTF(E_WARN, L_METADATA, "%s: Unhandled format: %s\n", path, ctx->iformat->name);
}
av_close_input_file(ctx);
#ifdef TIVO_SUPPORT