diff options
| author | Jan Schmidt <thaytan@mad.scientist.com> | 2005-02-01 16:40:10 +0000 | 
|---|---|---|
| committer | Jan Schmidt <thaytan@mad.scientist.com> | 2005-02-01 16:40:10 +0000 | 
| commit | 832c7d31f05ca2b3013ef3bdeccf9111d4f6be51 (patch) | |
| tree | 2e3e630a4792b1ddb8c70533e4c94b56e571e2de | |
| parent | fec5b44956bc5005a53a32fde6b39b3ae4140591 (diff) | |
ext/mpeg2dec/gstmpeg2dec.c: Don't send things to NULL PAD_PEERs
Original commit message from CVS:
* ext/mpeg2dec/gstmpeg2dec.c:
Don't send things to NULL PAD_PEERs
* gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
Copy-on-write the incoming buffer.
* gst/mpegstream/gstdvddemux.h:
* gst/mpegstream/gstmpegclock.h:
* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
(normal_seek), (gst_mpeg_demux_handle_src_event):
* gst/mpegstream/gstmpegdemux.h:
* gst/mpegstream/gstmpegpacketize.h:
* gst/mpegstream/gstmpegparse.c:
(gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
(gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
(gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
(gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
(gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
* gst/mpegstream/gstmpegparse.h:
* gst/mpegstream/gstrfc2250enc.h:
Various changes to the way time is computed that make seeking and
total time estimation much better here.
Use G_BEGIN/END_DECLS instead of __cplusplus
* gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
Use gst_buffer_stamp instead of only copying the TIMESTAMP
| -rw-r--r-- | ChangeLog | 29 | ||||
| -rw-r--r-- | gst/videocrop/gstvideocrop.c | 3 | 
2 files changed, 31 insertions, 1 deletions
@@ -1,3 +1,32 @@ +2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com> + +	* ext/mpeg2dec/gstmpeg2dec.c: +	  Don't send things to NULL PAD_PEERs + +	* gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain): +	  Copy-on-write the incoming buffer. + +	* gst/mpegstream/gstdvddemux.h: +	* gst/mpegstream/gstmpegclock.h: +	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead), +	(normal_seek), (gst_mpeg_demux_handle_src_event): +	* gst/mpegstream/gstmpegdemux.h: +	* gst/mpegstream/gstmpegpacketize.h: +	* gst/mpegstream/gstmpegparse.c: +	(gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset), +	(gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead), +	(gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate), +	(gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query), +	(gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state): +	* gst/mpegstream/gstmpegparse.h: +	* gst/mpegstream/gstrfc2250enc.h: +          Various changes to the way time is computed that make seeking and +	  total time estimation much better here. +	  Use G_BEGIN/END_DECLS instead of __cplusplus + +	* gst/videocrop/gstvideocrop.c: (gst_video_crop_chain): +	  Use gst_buffer_stamp instead of only copying the TIMESTAMP +  2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>  	* gst/subparse/gstsubparse.c: diff --git a/gst/videocrop/gstvideocrop.c b/gst/videocrop/gstvideocrop.c index 81ca4a62..47a2def8 100644 --- a/gst/videocrop/gstvideocrop.c +++ b/gst/videocrop/gstvideocrop.c @@ -523,7 +523,8 @@ gst_video_crop_chain (GstPad * pad, GstData * _data)    outbuf = gst_pad_alloc_buffer (video_crop->srcpad, GST_BUFFER_OFFSET (buffer),        GST_VIDEO_I420_SIZE (new_width, new_height)); -  GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buffer); + +  gst_buffer_stamp (outbuf, buffer);    gst_video_crop_i420 (video_crop, buffer, outbuf);    gst_buffer_unref (buffer);  | 
