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
This commit is contained in:
Thiago Santos 2009-07-30 00:12:45 -03:00
parent 80196e1bb8
commit c271548aab

View file

@ -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 */
}
/**