mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-08 12:51:21 +00:00
gst/asfdemux/gstasfmux.c: change some char* into char[]
Original commit message from CVS: * gst/asfdemux/gstasfmux.c: (gst_asfmux_file_start): change some char* into char[]
This commit is contained in:
parent
b5261874f0
commit
80d81b7e34
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-12-16 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/asfdemux/gstasfmux.c: (gst_asfmux_file_start):
|
||||
change some char* into char[]
|
||||
|
||||
2005-12-15 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 4edc214072fe07d2aade96bc336493425654d7b4
|
||||
Subproject commit d1911d4b3d6267f9cd9dfb68fcef2afe4d098092
|
|
@ -998,7 +998,7 @@ gst_asfmux_file_start (GstAsfMux * asfmux, guint64 file_size, guint64 data_size)
|
|||
gst_asfmux_put_le32 (header, asfmux->num_outputs);
|
||||
for (n = 0; n < asfmux->num_outputs; n++) {
|
||||
GstAsfMuxStream *stream = &asfmux->output[n];
|
||||
const char *codec = "Unknown codec";
|
||||
const char codec[] = "Unknown codec";
|
||||
|
||||
gst_asfmux_put_le16 (header, stream->index + 1);
|
||||
/* Isn't this wrong? This is UTF16! */
|
||||
|
|
Loading…
Reference in a new issue