mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
ext/ffmpeg/gstffmpegcodecmap.h: Actually initialize value (#311802).
Original commit message from CVS: Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net> * ext/ffmpeg/gstffmpegcodecmap.h: Actually initialize value (#311802).
This commit is contained in:
parent
512472efad
commit
e8a02014c6
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2005-07-28 daniel fischer <dan@f3c.com>
|
||||
|
||||
Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/ffmpeg/gstffmpegcodecmap.h:
|
||||
Actually initialize value (#311802).
|
||||
|
||||
2005-07-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* 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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue