Browse Source

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.

Originally committed as revision 4031 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
D Richard Felker III 21 years ago
parent
commit
b2866c5cb5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/matroska.c

+ 1
- 1
libavformat/matroska.c View File

@@ -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;


Loading…
Cancel
Save