summaryrefslogtreecommitdiffstats
path: root/gst/asfmux
diff options
context:
space:
mode:
authorThiago Santos <thiagoss@embedded.ufcg.edu.br>2009-07-30 00:12:45 -0300
committerThiago Santos <thiagoss@embedded.ufcg.edu.br>2009-07-30 10:33:05 -0300
commitc271548aabb978eded82b18f5caf5e5966b8718c (patch)
treee1222407218601382b23819260300e05f6642410 /gst/asfmux
parent80196e1bb8892a9a72890078530099d6e016f2cd (diff)
downloadgst-plugins-bad-c271548aabb978eded82b18f5caf5e5966b8718c.tar.gz
gst-plugins-bad-c271548aabb978eded82b18f5caf5e5966b8718c.tar.bz2
gst-plugins-bad-c271548aabb978eded82b18f5caf5e5966b8718c.zip
asfmux: Removing useless TODOs
After testing in windows and linux, this audio correction field made no difference so far. All example files I got only had zeroes in this field
Diffstat (limited to 'gst/asfmux')
-rw-r--r--gst/asfmux/gstasfmux.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gst/asfmux/gstasfmux.c b/gst/asfmux/gstasfmux.c
index 33f2c74d..edc4bb71 100644
--- a/gst/asfmux/gstasfmux.c
+++ b/gst/asfmux/gstasfmux.c
@@ -727,7 +727,7 @@ gst_asf_mux_write_stream_properties (GstAsfMux * asfmux, guint8 ** buf,
gst_asf_put_guid (*buf + 24, guids[ASF_VIDEO_MEDIA_INDEX]);
/* error correction */
if (asfpad->is_audio) {
- gst_asf_put_guid (*buf + 40, guids[ASF_NO_ERROR_CORRECTION_INDEX]); /* TODO - use audio spread */
+ gst_asf_put_guid (*buf + 40, guids[ASF_NO_ERROR_CORRECTION_INDEX]);
} else {
gst_asf_put_guid (*buf + 40, guids[ASF_NO_ERROR_CORRECTION_INDEX]);
}
@@ -796,7 +796,6 @@ gst_asf_mux_write_stream_properties (GstAsfMux * asfmux, guint8 ** buf,
memcpy (*buf, GST_BUFFER_DATA (asfpad->codec_data), codec_data_length);
*buf += codec_data_length;
- /* TODO - error correction for audio */
}
/**