vlc | branch: master | Jean-Baptiste Kempf <[email protected]> | Thu Jan 31 22:57:31 2013 +0100| [0202493d151d7f082aa59bcc53ab5b541f854abf] | committer: Jean-Baptiste Kempf
MpegVideo packetizer: fix frame rates > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0202493d151d7f082aa59bcc53ab5b541f854abf --- modules/packetizer/mpegvideo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/packetizer/mpegvideo.c b/modules/packetizer/mpegvideo.c index 54f12c6..2020cfb 100644 --- a/modules/packetizer/mpegvideo.c +++ b/modules/packetizer/mpegvideo.c @@ -538,7 +538,7 @@ static block_t *ParseMPEGBlock( decoder_t *p_dec, block_t *p_frag ) /* Unofficial 15fps from Xing*/ { 15, 1001 }, /* Unofficial economy rates from libmpeg3 */ - { 5, 1001 }, { 10, 1001 }, { 12, 1001 }, { 15, 1001 }, + { 5000, 1001 }, { 1000, 1001 }, { 12000, 1001 }, { 15000, 1001 }, { 1, 1 }, { 1, 1 } /* invalid */ }; _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
