mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 07:09:56 +00:00
ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
Original commit message from CVS: * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new), (gst_fenced_buffer_default_copy): Fix for rename of buffer private structure members. * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time value during a resize/renegotiation. * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use gst_pad_alloc_buffer(); * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private structure members. * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free): Fix for rename of buffer private structure members. * sys/ximage/ximagesink.c: (gst_ximagesink_chain), (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc): Fix for rename of buffer private structure members. * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc): Fix for rename of buffer private structure members.
This commit is contained in:
parent
6d53140c73
commit
4ec54daec5
4 changed files with 34 additions and 10 deletions
22
ChangeLog
22
ChangeLog
|
@ -1,3 +1,25 @@
|
|||
2004-01-11 David Schleef <ds@schleef.org>
|
||||
|
||||
* ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
|
||||
* gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
|
||||
(gst_fenced_buffer_default_copy): Fix for rename of buffer private
|
||||
structure members.
|
||||
* gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
|
||||
value during a resize/renegotiation.
|
||||
* gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
|
||||
gst_pad_alloc_buffer();
|
||||
* sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
|
||||
(gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
|
||||
structure members.
|
||||
* sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
|
||||
Fix for rename of buffer private structure members.
|
||||
* sys/ximage/ximagesink.c: (gst_ximagesink_chain),
|
||||
(gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
|
||||
Fix for rename of buffer private structure members.
|
||||
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
|
||||
(gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
|
||||
Fix for rename of buffer private structure members.
|
||||
|
||||
2004-01-11 Arwed v. Merkatz <v.merkatz@gmx.net>
|
||||
|
||||
reviewed by: David Schleef <ds@schleef.org>
|
||||
|
|
|
@ -213,8 +213,8 @@ gst_efence_chain (GstPad *pad, GstData *_data)
|
|||
GST_BUFFER_TIMESTAMP (copy) = GST_BUFFER_TIMESTAMP (buffer);
|
||||
GST_BUFFER_DURATION (copy) = GST_BUFFER_DURATION (buffer);
|
||||
GST_BUFFER_OFFSET (copy) = GST_BUFFER_OFFSET (buffer);
|
||||
GST_BUFFER_BUFFERPOOL (copy) = NULL;
|
||||
GST_BUFFER_POOL_PRIVATE (copy) = NULL;
|
||||
GST_BUFFER_FREE_DATA_FUNC (copy) = NULL;
|
||||
GST_BUFFER_PRIVATE (copy) = NULL;
|
||||
|
||||
gst_buffer_unref(buffer);
|
||||
gst_pad_push (efence->srcpad, GST_DATA (copy));
|
||||
|
@ -305,8 +305,8 @@ GstBuffer *gst_fenced_buffer_new(void)
|
|||
GST_BUFFER_TIMESTAMP (newbuf) = GST_CLOCK_TIME_NONE;
|
||||
GST_BUFFER_DURATION (newbuf) = GST_CLOCK_TIME_NONE;
|
||||
GST_BUFFER_OFFSET (newbuf) = GST_BUFFER_OFFSET_NONE;
|
||||
GST_BUFFER_BUFFERPOOL (newbuf) = NULL;
|
||||
GST_BUFFER_POOL_PRIVATE (newbuf) = NULL;
|
||||
GST_BUFFER_FREE_DATA_FUNC (newbuf) = NULL;
|
||||
GST_BUFFER_PRIVATE (newbuf) = NULL;
|
||||
|
||||
GST_DEBUG ("new buffer=%p", newbuf);
|
||||
|
||||
|
@ -364,8 +364,8 @@ GstBuffer* gst_fenced_buffer_default_copy (GstBuffer *buffer)
|
|||
GST_BUFFER_TIMESTAMP (copy) = GST_BUFFER_TIMESTAMP (buffer);
|
||||
GST_BUFFER_DURATION (copy) = GST_BUFFER_DURATION (buffer);
|
||||
GST_BUFFER_OFFSET (copy) = GST_BUFFER_OFFSET (buffer);
|
||||
GST_BUFFER_BUFFERPOOL (copy) = NULL;
|
||||
GST_BUFFER_POOL_PRIVATE (copy) = NULL;
|
||||
GST_BUFFER_FREE_DATA_FUNC (copy) = NULL;
|
||||
GST_BUFFER_PRIVATE (copy) = NULL;
|
||||
|
||||
return copy;
|
||||
}
|
||||
|
|
|
@ -247,7 +247,10 @@ static void gst_warptv_setup(GstVideofilter *videofilter)
|
|||
|
||||
warptv->width = width;
|
||||
warptv->height = height;
|
||||
#if 0
|
||||
/* FIXME this should be reset in PAUSE->READY, not here */
|
||||
warptv->tval = 0;
|
||||
#endif
|
||||
|
||||
g_free (warptv->disttable);
|
||||
g_free (warptv->offstable);
|
||||
|
|
|
@ -329,11 +329,10 @@ gst_videofilter_chain (GstPad *pad, GstData *_data)
|
|||
size, videofilter->from_buf_size);
|
||||
}
|
||||
|
||||
outbuf = gst_buffer_new();
|
||||
/* FIXME: handle bufferpools */
|
||||
GST_BUFFER_SIZE(outbuf) = videofilter->to_buf_size;
|
||||
GST_BUFFER_DATA(outbuf) = g_malloc (videofilter->to_buf_size);
|
||||
outbuf = gst_pad_alloc_buffer(videofilter->srcpad, GST_BUFFER_OFFSET_NONE,
|
||||
videofilter->to_buf_size);
|
||||
GST_BUFFER_TIMESTAMP(outbuf) = GST_BUFFER_TIMESTAMP(buf);
|
||||
GST_BUFFER_DURATION(outbuf) = GST_BUFFER_DURATION(buf);
|
||||
|
||||
g_return_if_fail(videofilter->format);
|
||||
GST_DEBUG ("format %s",videofilter->format->fourcc);
|
||||
|
|
Loading…
Reference in a new issue