mirror of https://git.ffmpeg.org/ffmpeg.git
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
This commit is contained in:
parent
a0f1f16597
commit
b2866c5cb5
|
@ -2243,7 +2243,7 @@ matroska_read_header (AVFormatContext *s,
|
||||||
/* codec_id = CODEC_ID_DTS; */
|
/* codec_id = CODEC_ID_DTS; */
|
||||||
else if (!strcmp(track->codec_id,
|
else if (!strcmp(track->codec_id,
|
||||||
MATROSKA_CODEC_ID_AUDIO_VORBIS)) {
|
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 cps = track->codec_priv_size;
|
||||||
int nf, s[3], cds;
|
int nf, s[3], cds;
|
||||||
int i;
|
int i;
|
||||||
|
|
Loading…
Reference in New Issue