flvmux: Remove the send_codec_data field from GstFlvPad

That field is not used anymore after the changes in
9fdecbc1c1.
This commit is contained in:
Jan Urbański 2010-03-16 00:35:46 +01:00 committed by Sebastian Dröge
parent efbdecd0ac
commit ef8f7614ff
2 changed files with 2 additions and 17 deletions

View file

@ -301,14 +301,8 @@ gst_flv_mux_video_pad_setcaps (GstPad * pad, GstCaps * caps)
if (ret && gst_structure_has_field (s, "codec_data")) {
const GValue *val = gst_structure_get_value (s, "codec_data");
if (val) {
if (val)
cpad->video_codec_data = gst_buffer_ref (gst_value_get_buffer (val));
cpad->sent_codec_data = FALSE;
} else {
cpad->sent_codec_data = TRUE;
}
} else {
cpad->sent_codec_data = TRUE;
}
gst_object_unref (mux);
@ -455,14 +449,8 @@ gst_flv_mux_audio_pad_setcaps (GstPad * pad, GstCaps * caps)
if (ret && gst_structure_has_field (s, "codec_data")) {
const GValue *val = gst_structure_get_value (s, "codec_data");
if (val) {
if (val)
cpad->audio_codec_data = gst_buffer_ref (gst_value_get_buffer (val));
cpad->sent_codec_data = FALSE;
} else {
cpad->sent_codec_data = TRUE;
}
} else {
cpad->sent_codec_data = TRUE;
}
gst_object_unref (mux);
@ -525,8 +513,6 @@ gst_flv_mux_request_new_pad (GstElement * element,
cpad->video_codec = G_MAXUINT;
cpad->video_codec_data = NULL;
cpad->sent_codec_data = FALSE;
cpad->last_timestamp = 0;
/* FIXME: hacked way to override/extend the event function of

View file

@ -52,7 +52,6 @@ typedef struct
guint video_codec;
GstBuffer *video_codec_data;
gboolean sent_codec_data;
GstClockTime last_timestamp;
} GstFlvPad;