diff --git a/ChangeLog b/ChangeLog index dc9498c096..75688c4214 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-07-28 daniel fischer + + Reviewed by: Ronald S. Bultje + + * ext/ffmpeg/gstffmpegcodecmap.h: + Actually initialize value (#311802). + 2005-07-27 Ronald S. Bultje * ext/ffmpeg/gstffmpegcodecmap.h: diff --git a/ext/ffmpeg/gstffmpegcodecmap.h b/ext/ffmpeg/gstffmpegcodecmap.h index 9a7858e8cd..e8e3aa0707 100644 --- a/ext/ffmpeg/gstffmpegcodecmap.h +++ b/ext/ffmpeg/gstffmpegcodecmap.h @@ -158,7 +158,7 @@ gst_ffmpeg_time_gst_to_ff (guint64 time, AVRational base) if (!GST_CLOCK_TIME_IS_VALID (time)) { out = AV_NOPTS_VALUE; } else { - AVRational bq; + AVRational bq = { 1, GST_SECOND }; out = av_rescale_q (time, bq, base); }