[gst-cvs] gst-plugins-good: [MOVED FROM BAD 31/57] gst/flv/gstflvmux.c: Don' t set video_codec to the value that actually should go into audio codec, otherwise we create...
Sebastian Dröge
slomo at kemper.freedesktop.org
Tue May 12 12:57:59 PDT 2009
Module: gst-plugins-good
Branch: master
Commit: 6c61c0b78dc7f7da1a97dc5c4c18476caadd705b
URL: http://cgit.freedesktop.org/gstreamer/gst-plugins-good/commit/?id=6c61c0b78dc7f7da1a97dc5c4c18476caadd705b
Author: Sebastian Dröge <slomo at circular-chaos.org>
Date: Thu Oct 16 15:21:15 2008 +0000
[MOVED FROM BAD 31/57] gst/flv/gstflvmux.c: Don't set video_codec to the value that actually should go into audio codec, otherwise we create...
Original commit message from CVS:
* gst/flv/gstflvmux.c: (gst_flv_mux_audio_pad_setcaps),
(gst_flv_mux_write_buffer):
Don't set video_codec to the value that actually should go
into audio codec, otherwise we create invalid files.
Fixes bug #556564.
---
gst/flv/gstflvmux.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/gst/flv/gstflvmux.c b/gst/flv/gstflvmux.c
index a41b03f..401a074 100644
--- a/gst/flv/gstflvmux.c
+++ b/gst/flv/gstflvmux.c
@@ -310,9 +310,9 @@ gst_flv_mux_audio_pad_setcaps (GstPad * pad, GstCaps * caps)
else
ret = FALSE;
} else if (strcmp (gst_structure_get_name (s), "audio/x-alaw") == 0) {
- cpad->video_codec = 7;
+ cpad->audio_codec = 7;
} else if (strcmp (gst_structure_get_name (s), "audio/x-mulaw") == 0) {
- cpad->video_codec = 8;
+ cpad->audio_codec = 8;
} else {
ret = FALSE;
}
@@ -536,7 +536,7 @@ next:
size += GST_BUFFER_SIZE (buffer);
} else {
size += 1;
- if (cpad->video_codec == 10 && !cpad->sent_codec_data)
+ if (cpad->audio_codec == 10 && !cpad->sent_codec_data)
size += 1 + GST_BUFFER_SIZE (cpad->audio_codec_data);
else if (cpad->audio_codec == 10)
size += 1 + GST_BUFFER_SIZE (buffer);
@@ -595,7 +595,7 @@ next:
data[11] |= (cpad->width << 1) & 0x02;
data[11] |= (cpad->channels << 0) & 0x01;
- if (cpad->video_codec == 10 && !cpad->sent_codec_data) {
+ if (cpad->audio_codec == 10 && !cpad->sent_codec_data) {
data[12] = 0;
memcpy (data + 11 + 1 + 1, GST_BUFFER_DATA (cpad->audio_codec_data),
More information about the Gstreamer-commits
mailing list