[haiku-commits] haiku: hrev52170 - src/add-ons/media/plugins/ffmpeg

  • From: Barrett17 <b.vitruvio@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 5 Aug 2018 08:35:11 -0400 (EDT)

hrev52170 adds 1 changeset to branch 'master'
old head: 201707aee88fd6332761a740d26d866bf0cde761
new head: 42cc463169541d13948b6a9d43231f7343c995f7
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=42cc46316954+%5E201707aee88f

----------------------------------------------------------------------------

42cc46316954: ffmpeg: Fix typo and copyright notice

                                        [ Barrett17 <b.vitruvio@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev52170
Commit:      42cc463169541d13948b6a9d43231f7343c995f7
URL:         https://git.haiku-os.org/haiku/commit/?id=42cc46316954
Author:      Barrett17 <b.vitruvio@xxxxxxxxx>
Date:        Sun Aug  5 12:29:16 2018 UTC

----------------------------------------------------------------------------

2 files changed, 2 insertions(+), 1 deletion(-)
src/add-ons/media/plugins/ffmpeg/AVCodecEncoder.cpp | 1 +
src/add-ons/media/plugins/ffmpeg/AVFormatWriter.cpp | 2 +-

----------------------------------------------------------------------------

diff --git a/src/add-ons/media/plugins/ffmpeg/AVCodecEncoder.cpp 
b/src/add-ons/media/plugins/ffmpeg/AVCodecEncoder.cpp
index c11bf39ff2..f7f7aa7de2 100644
--- a/src/add-ons/media/plugins/ffmpeg/AVCodecEncoder.cpp
+++ b/src/add-ons/media/plugins/ffmpeg/AVCodecEncoder.cpp
@@ -1,5 +1,6 @@
 /*
  * Copyright 2009-2010, Stephan Amßus <superstippi@xxxxxx>
+ * Copyright 2018, Dario Casalinuovo
  * All rights reserved. Distributed under the terms of the MIT license.
  */
 
diff --git a/src/add-ons/media/plugins/ffmpeg/AVFormatWriter.cpp 
b/src/add-ons/media/plugins/ffmpeg/AVFormatWriter.cpp
index 4a20b5a9a1..1bc724eb73 100644
--- a/src/add-ons/media/plugins/ffmpeg/AVFormatWriter.cpp
+++ b/src/add-ons/media/plugins/ffmpeg/AVFormatWriter.cpp
@@ -268,7 +268,7 @@ AVFormatWriter::StreamCookie::Init(media_format* format,
 
        TRACE("  stream->time_base: (%d/%d), codec->time_base: (%d/%d))\n",
                fStream->time_base.num, fStream->time_base.den,
-               fStream->code->time_base.num, fStream->codec->time_base.den);
+               fStream->codec->time_base.num, fStream->codec->time_base.den);
 
 #if 0
        // Write the AVCodecContext pointer to the user data section of the


Other related posts:

  • » [haiku-commits] haiku: hrev52170 - src/add-ons/media/plugins/ffmpeg - Barrett17