Mercurial > libavformat.hg
changeset 696:e4a2f30900d5 libavformat
Patch from Gianluigi Tiesi (sherpya at netfarm dot it):
"A small patch to avoid error compiling matroska.c on mingw"
My comment: using typedefs for things like this is always ridiculous.
author | rfelker |
---|---|
date | Fri, 11 Mar 2005 19:52:43 +0000 |
parents | 645c4432947b |
children | c7e1501cc306 |
files | matroska.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/matroska.c Fri Mar 11 17:13:03 2005 +0000 +++ b/matroska.c Fri Mar 11 19:52:43 2005 +0000 @@ -2243,7 +2243,7 @@ /* codec_id = CODEC_ID_DTS; */ else if (!strcmp(track->codec_id, MATROSKA_CODEC_ID_AUDIO_VORBIS)) { - u_char *p = track->codec_priv, *cdp; + unsigned char *p = track->codec_priv, *cdp; int cps = track->codec_priv_size; int nf, s[3], cds; int i;