forked from FFmpeg/FFmpeg
fix a warning when DEBUG is defined
Originally committed as revision 5152 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c6e722e5e9
commit
0ab16fe09d
1 changed files with 1 additions and 1 deletions
|
@ -779,7 +779,7 @@ static int mov_read_alac(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
|
||||||
if (st->codec->extradata) {
|
if (st->codec->extradata) {
|
||||||
strcpy(st->codec->extradata + 4, "alac"); // fake
|
strcpy(st->codec->extradata + 4, "alac"); // fake
|
||||||
get_buffer(pb, st->codec->extradata + 8, 36 - 8);
|
get_buffer(pb, st->codec->extradata + 8, 36 - 8);
|
||||||
dprintf("Reading alac %Ld %s\n", st->codec->extradata_size, (char*)st->codec->extradata);
|
dprintf("Reading alac %d %s\n", st->codec->extradata_size, (char*)st->codec->extradata);
|
||||||
} else
|
} else
|
||||||
url_fskip(pb, atom.size);
|
url_fskip(pb, atom.size);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue