Commit 5067c2c1 authored by michael's avatar michael

Remove incorrect cast found by -Wwrite-strings.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11848 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ec3cdb3e
...@@ -2234,7 +2234,7 @@ matroska_read_header (AVFormatContext *s, ...@@ -2234,7 +2234,7 @@ matroska_read_header (AVFormatContext *s,
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
init_put_byte(&b, extradata, extradata_size, 1, init_put_byte(&b, extradata, extradata_size, 1,
NULL, NULL, NULL, NULL); NULL, NULL, NULL, NULL);
put_buffer(&b, (uint8_t *) "TTA1", 4); put_buffer(&b, "TTA1", 4);
put_le16(&b, 1); put_le16(&b, 1);
put_le16(&b, audiotrack->channels); put_le16(&b, audiotrack->channels);
put_le16(&b, audiotrack->bitdepth); put_le16(&b, audiotrack->bitdepth);
......
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