[vlc-commits] packetizer: mpegvideo: unofficial eco rates are integer

Francois Cartegnie git at videolan.org
Wed Jan 29 18:30:16 CET 2020


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Wed Jan 29 11:56:25 2020 +0100| [8d3e2bc3b2ea8bce9929373b5b565fe3c433b6ab] | committer: Francois Cartegnie

packetizer: mpegvideo: unofficial eco rates are integer

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8d3e2bc3b2ea8bce9929373b5b565fe3c433b6ab
---

 modules/packetizer/mpegvideo.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/packetizer/mpegvideo.c b/modules/packetizer/mpegvideo.c
index 241da6feff..a25c4af8eb 100644
--- a/modules/packetizer/mpegvideo.c
+++ b/modules/packetizer/mpegvideo.c
@@ -783,9 +783,9 @@ static block_t *ParseMPEGBlock( decoder_t *p_dec, block_t *p_frag )
             { 24000, 1001 }, { 24, 1 }, { 25, 1 },       { 30000, 1001 },
             { 30, 1 },       { 50, 1 }, { 60000, 1001 }, { 60, 1 },
             /* Unofficial 15fps from Xing*/
-            { 15, 1001 },
+            { 15, 1 },
             /* Unofficial economy rates from libmpeg3 */
-            { 5000, 1001 }, { 1000, 1001 }, { 12000, 1001 }, { 15000, 1001 },
+            { 5, 1 }, { 10, 1 }, { 12, 1 }, { 15, 1 },
             { 1, 1 },  { 1, 1 }  /* invalid */
         };
 



More information about the vlc-commits mailing list