mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 13:41:48 +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]);
|
gst_asf_put_guid (*buf + 24, guids[ASF_VIDEO_MEDIA_INDEX]);
|
||||||
/* error correction */
|
/* error correction */
|
||||||
if (asfpad->is_audio) {
|
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 {
|
} else {
|
||||||
gst_asf_put_guid (*buf + 40, guids[ASF_NO_ERROR_CORRECTION_INDEX]);
|
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);
|
memcpy (*buf, GST_BUFFER_DATA (asfpad->codec_data), codec_data_length);
|
||||||
|
|
||||||
*buf += codec_data_length;
|
*buf += codec_data_length;
|
||||||
/* TODO - error correction for audio */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue