Commit 4f24fc1d authored by rfelker's avatar rfelker

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.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4031 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1f9d9d45
......@@ -2243,7 +2243,7 @@ matroska_read_header (AVFormatContext *s,
/* 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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment