- Feb 19, 2016
-
-
François Cartegnie authored
-
Jean-Baptiste Kempf authored
-
Felix Paul Kühne authored
-
François Cartegnie authored
-
François Cartegnie authored
As we're now requiring 1.9
-
Thomas Guillem authored
In order to behave like libvlc_Internal* functions.
-
Jean-Baptiste Kempf authored
-
Rafaël Carré authored
-
François Cartegnie authored
-
François Cartegnie authored
-
Rémi Denis-Courmont authored
This reverts commit f36f4152.
-
Rémi Denis-Courmont authored
This reverts commit e2963160.
-
- Feb 18, 2016
-
-
François Cartegnie authored
refs #16623
-
Jean-Baptiste Kempf authored
-
Hugo Beauzée-Luyssen authored
This allow the resume where you left off feature to kick in when starting the playback again, but not when cycling through a playlist refs #11704
-
Hugo Beauzée-Luyssen authored
fix #16593
-
Kazuki Yamaguchi authored
* First try of p_sys->p_b25->get() always does nothing, so read from stream first. * Merge DecoderRead() into Read() Signed-off-by:
Yuudai Yamashigi <yyamashigi@videolan.org>
-
Kazuki Yamaguchi authored
Signed-off-by:
Yuudai Yamashigi <yyamashigi@videolan.org>
-
Kazuki Yamaguchi authored
ARIB STD-B25 [1] says associated information must be transmitted in compliance with the Ministry of Internal Affairs and Communications Notification No. 223, 2014 [2], which says the TS packet size is 188 bytes. [1] http://www.arib.or.jp/english/html/overview/doc/2-STD-B25v6_5.pdf (p.315, Japanese) [2] http://www.soumu.go.jp/main_content/000353390.pdf (p.14, Japanese) Signed-off-by:
Yuudai Yamashigi <yyamashigi@videolan.org>
-
Felix Paul Kühne authored
-
Thomas Guillem authored
In order to behave like libvlc_Internal* functions.
-
- Feb 17, 2016
-
-
Layer configurations were set, but layers have not been enabled. Some DVB drivers are require them to be enabled to watch TV. Signed-off-by:
Takahito Hirano <hiranotaka@zng.info> Signed-off-by:
Rémi Denis-Courmont <remi@remlab.net>
-
François Cartegnie authored
as we have now generic decoder, we can do assembling and benefit from crc32 checks
-
François Cartegnie authored
As we only use metadata, we don't need taglib to fetch audioproperties
-
François Cartegnie authored
I don't see why playlist should try meta readers/taglib
-
François Cartegnie authored
-
François Cartegnie authored
-
Hugo Beauzée-Luyssen authored
-
Hugo Beauzée-Luyssen authored
-
I wrote a hackish script to locate instances where new can throw but where the original author has assumed that it will return nullptr when there is a memory allocation problem. In short, cases such as `ptr = new T; if (ptr) ...` has now been changed to `ptr = new (std::nothrow) T; if (ptr) ...`. Since a throwing `new` will always yield a non-nullptr pointer, code that follows similar patterns to the previous example are therefor redundant. Example (from modules/access/dshow/filter.cpp): *ppEnum = new CaptureEnumMediaTypes( p_input, p_pin, this ); if( *ppEnum == NULL ) return E_OUTOFMEMORY; // unreachable, new will never return NULL Fixed: *ppEnum = new (std::nothrow) CaptureEnumMediaTypes( p_input, p_pin, this ); if( *ppEnum == NULL ) return E_OUTOFMEMORY; Signed-off-by:
Hugo Beauzée-Luyssen <hugo@beauzee.fr>
-
- Feb 16, 2016
-
-
Jean-Baptiste Kempf authored
Close #15150
-
Close #16625 Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Thomas Guillem authored
bins.patch is now enough.
-
- Feb 15, 2016
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Hugo Beauzée-Luyssen authored
cid #1352638
-
Hugo Beauzée-Luyssen authored
cid #1352639
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
And don't do a strdup when it's not necessary
-