mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
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:
parent
80196e1bb8
commit
c271548aab
1 changed files with 1 additions and 2 deletions
|
@ -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 */
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue