sort by:
Revision Author Date Message Commit Date
18021cd mkv: virtual_segment.cpp c-style casts => c++ casts Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 05 March 2016, 21:14:02 UTC
a567b9e mkv: util.cpp c-style casts => c++ casts Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 05 March 2016, 21:14:02 UTC
c3b8f19 mkv: mkv.cpp c-style casts => c++ casts (+fix) - c-style casts have been replaced with safer c++ casts - removed pointless cast after usage of `va_arg` since the type of the expression `va_arg` expands to is documented to be what has been passed as parameter. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 05 March 2016, 21:14:02 UTC
a0d9858 mkv: chapter_command.cpp c-style casts => c++ casts Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 05 March 2016, 21:14:02 UTC
8fc136d mkv: matroska_segment_parse.cpp c-style cast => c++ cast Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 05 March 2016, 21:14:02 UTC
692c8e9 mkv: matroska_segment.cpp c-style cast => c++ cast Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 05 March 2016, 21:14:02 UTC
c2e0de7 mkv: replaced magic `10` by real constant + fixed initialization Since `EbmlParser::m_el` has a fixed size we should take advantage of this and actually pass `sizeof(m_el)` directly to `memset`; especially since the old code only initializes the first 6 pointers when the array can potentially store 10 elements. The magic constant 10 has been replaced by `EbmlParser::M_EL_MAXSIZE` to make the code easier to read, and safer to use. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 05 March 2016, 21:14:02 UTC
12a207b mkv: clean `chapters.{cpp,hpp}` chapters.cpp: `delete` is a NOOP if the operand is NULL, if-check removed. chapters.{hpp,cpp}: introduced helper for `chapter_item_c::{Enter,Leave}` since they are extremely similar in their implementation. The helper makes use of <algorithm> and <functional> to make the code more error-proof, as a plus it is a little bit cleaner. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 05 March 2016, 21:13:22 UTC
4df0bba mkv: added warning regarding undefined-behavior The workaround currently present in the codebase is undefined-behavior since the dynamic type of the object in question is not the one used in the `static_cast`. In short nothing guarantees that the vtable for the different types look the same, and as such this is very dangerous. We should probably supply a patch upstream if the bug is still present in their code. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 05 March 2016, 21:11:43 UTC
81c850e Qt: programmaticaly check module prefix in profiles Both mux_ and non mux_ prefixed being listed 04 March 2016, 14:40:33 UTC
6c1d893 Qt: add missing muxers aliases (fix #12089, #16682) 04 March 2016, 14:37:40 UTC
4dd2f5c input: set the thread priority from the thread callback input_Read() doesn't create any threads and run the Init() function that could change the priority of an uninitialized thread. This could happen when running ./vlc --sout from Windows. 04 March 2016, 12:14:34 UTC
4757ae1 avcodec: disable hwaccel when unsupported/broken (fixes #16642) 04 March 2016, 02:43:16 UTC
51cbbae demux: fix video/MP2T content type probing fixes probing delay when opening DTV 03 March 2016, 20:33:27 UTC
30ae23e demux: ts: add empty eit event (fix #16679) 03 March 2016, 19:23:52 UTC
d412213 contribs: update aribb25 03 March 2016, 18:15:25 UTC
56e6fce contrib: fix SHA512SUM data for Sparkle Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 03 March 2016, 17:16:17 UTC
4a55f4e demux: ts: only construct SI on pmt callbacks Avoid setting DVB specific handlers from start then unsetting when not DVB. 03 March 2016, 17:15:24 UTC
2d27915 demux: ts: rename psip base pid tracking reference on pmt 03 March 2016, 17:15:23 UTC
06f6d94 demux: ts: unify standards and its options 03 March 2016, 17:15:23 UTC
42cb58f demux: ts: encap psi packets push 03 March 2016, 17:15:23 UTC
a985c6f demux: ts: move PAT creation to psi 03 March 2016, 17:15:23 UTC
5d31d47 demux: ts: add dedicated header for ts_pid forward decls 03 March 2016, 17:15:23 UTC
48ff223 demux: ts: unify all si tables pid structs 03 March 2016, 17:15:23 UTC
84ae087 demux: ts: attach si tables by on callback, filter by pid The generic new SI table callback handler must check table id is sent from the right pid. 03 March 2016, 17:15:23 UTC
d2a7fa8 demux: ts: add missing running status 03 March 2016, 17:15:23 UTC
3914f39 demux: ts: simplify the current epg 03 March 2016, 17:15:23 UTC
ff618fd demux: ts: add defines for SI pids 03 March 2016, 17:15:23 UTC
dcacb80 demux: ts: pass pid as si new table callback 03 March 2016, 17:15:23 UTC
8ffb3cd direct3d11: use DXGI_SWAP_EFFECT_FLIP_SEQUENTIAL to avoid buffer copies this will restrict the D3D11 vout to Windows 7 SP1 and Windows 8+ 03 March 2016, 17:14:42 UTC
bd09aeb direct3d11: make sure we request a device that can do D3D11 11.1 03 March 2016, 17:14:42 UTC
47e06f0 direct3d11: the reference driver is not intended for release builds see https://msdn.microsoft.com/en-us/library/windows/desktop/ff476328%28v=vs.85%29.aspx#D3D_DRIVER_TYPE_REFERENCE 03 March 2016, 17:14:42 UTC
2175323 contrib:d3d11: build dxgi1_2.h and dxgi1_3.h 03 March 2016, 17:14:42 UTC
c0d6c69 contrib:d3d11: VideoProcessor support needs D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT_OUTPUT 03 March 2016, 17:14:42 UTC
6947740 transcode: destroy the mutex and condition only if they have been initialized. If i_threads == 0, both are not initialized as the function transcode_video_new returns before the call to vlc_mutex_init and vlc_cond_init. This patch fixes a deadlock on vlc_cond_destroy called with an uninitialized condition variable argument. Signed-off-by: Thomas Guillem <thomas@gllm.fr> 02 March 2016, 07:47:05 UTC
4f5af4a mediacodec: fix Android error callback not sent in case of early fail This is the last android ugly hack. This will be gone with the decoder fallback. 01 March 2016, 18:10:28 UTC
1e6811f D3D9: fix typo 01 March 2016, 18:07:00 UTC
96f092a marq: Force the ar to 1:1 01 March 2016, 17:28:17 UTC
b6a5c31 http: test cases for ICY plugin hand-over 01 March 2016, 05:42:07 UTC
3425a6c http: redirect to icyx:// if Icy-Name or Icy-Genre present If an ICY server returns an HTTP response (instead of an non-HTTP ICY response), rewrite the URL to use icyx:// explicitly. 01 March 2016, 05:41:11 UTC
67ddb38 http: test hand-over to MMSH plug-in 01 March 2016, 05:40:40 UTC
39fa337 http: fix MMSH redirection 01 March 2016, 05:39:12 UTC
d71f05b http: update test for Accept-Language 01 March 2016, 05:13:13 UTC
035962f http: drop Accept-Language upon 406 error 01 March 2016, 05:12:52 UTC
2ae9ae7 http: always fill Accept-Language, test it 01 March 2016, 04:37:48 UTC
1a922a4 Avahi: listen to the browsing protocols we support SFTP, FTP, SMB, NFS 29 February 2016, 22:23:26 UTC
c932d32 iOS: disable vpx if we have avcodec and remove legacy configure flag 29 February 2016, 17:07:42 UTC
10f9493 keychain: compile for OS X only for now 29 February 2016, 15:21:45 UTC
5294443 demux: mkv: add ALAC atom size, tag and tag version to private data Fixes #16620 29 February 2016, 15:07:09 UTC
0135c94 Change vlc_meta_DiscNumber's english string to "Disc number" This mimics the english string of vlc_meta_TrackNumber Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 29 February 2016, 14:04:51 UTC
74271ff Qt: Allow sorting by disc number Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 29 February 2016, 14:04:16 UTC
03b90ce playlist: Allow sorting by disc number Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 29 February 2016, 14:03:46 UTC
b4ab905 win32: fix the cygpath test under msys2 The command after the && is not executed when the '-' prefix is there. All other test failures in the Makefile are using the if/then/fi logic. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 29 February 2016, 14:00:29 UTC
f480299 rtsp: fix missing protocol in vlc_credential 29 February 2016, 10:56:17 UTC
2ab554b vlc_credential: update test Call vlc_credential_store even if credential is not valid. Test an invalid path and an invalid url. 29 February 2016, 10:55:55 UTC
1973059 vlc_credential: fix url check 29 February 2016, 10:41:36 UTC
b1c9947 vlc_credential: fix store behavior 29 February 2016, 10:39:12 UTC
39c8ea3 microdns: add RTSP Signed-off-by: Thomas Guillem <thomas@gllm.fr> 29 February 2016, 09:20:23 UTC
d7df2e9 demux: ts: really don't assume dts/pts are present 28 February 2016, 20:26:27 UTC
4130fed demux: ts: remove leftoff debug 28 February 2016, 20:26:26 UTC
ba01cec demux: ts: add defines for TDT/TOT table id 28 February 2016, 20:21:29 UTC
4eb6f4b demux: ts: add defines for sdt runstatus 28 February 2016, 20:21:29 UTC
95bcede demux: ts: add special value for undefined tdt deltas delta could be 0 28 February 2016, 20:21:29 UTC
30f6b14 demux: ts: add eit debug timeshift 28 February 2016, 20:21:29 UTC
2f0d1f8 Qt: don't change height if widget doesn't change visibility Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 28 February 2016, 18:57:38 UTC
22d61da transcode: fix double free (fixes #16258) Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 28 February 2016, 18:56:15 UTC
440eec3 ts: fix applying pcr offset in PCRCheckDTS() Improve logging Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 28 February 2016, 18:55:56 UTC
1d6fbec SFTP: Simplify Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 28 February 2016, 18:54:42 UTC
9b1f19a qt: fix vout not using qt window module anymore Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 28 February 2016, 18:53:57 UTC
03b3a0e macosx: Print warning if user activity declaration failed 28 February 2016, 13:49:10 UTC
ae0cd5b macosx: use var_InheritBool to read disable-screensaver 28 February 2016, 13:48:33 UTC
fa34285 macosx: use var_InheritBool to read macosx-statusicon 28 February 2016, 13:48:02 UTC
b8869f9 Relax requirements for FFmpeg hwaccel It doesn't error out anymore since 5edd1f62ca1 28 February 2016, 09:02:15 UTC
bfca1ad Fix MODULES_LIST 27 February 2016, 17:08:12 UTC
b9bf89d macosx/open: fix opening the panel by removing a constraint with an out of subtree reference 27 February 2016, 16:48:20 UTC
0ca54d3 Qt: fix Qt4 comments 27 February 2016, 16:39:01 UTC
b32eea4 Rename qt4.hpp to qt.hpp 27 February 2016, 16:37:57 UTC
bd383a8 Rename qt4.cpp to qt.cpp 27 February 2016, 16:37:57 UTC
a980104 mac configure script: remove obsolete flag 27 February 2016, 16:36:51 UTC
b634e6a Fix comments about Qt4 27 February 2016, 16:25:48 UTC
fd3b1b6 Rename qt4 plugin to qt 27 February 2016, 16:25:45 UTC
c27d273 Move Qt from qt4 to qt folder 27 February 2016, 16:25:04 UTC
b1b2133 Qt: increase height for resume-panel Needed because hideResumePanel() decreases the height. Close #14566 Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 27 February 2016, 15:48:05 UTC
a8899ae Qt: change height when switching from/to minimal interface Close #7950 Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 27 February 2016, 15:47:34 UTC
f154cef demux: ts: flag DSM-CC Type B sections transport 27 February 2016, 12:46:29 UTC
821e27e demux: ts: flag sections transport to kill warnings Otherwise, goes through PES handlers which screams about invalid header. 27 February 2016, 12:46:29 UTC
37a38b7 demux: ts: add missing ts wrap 27 February 2016, 12:46:29 UTC
25432f5 es_out: epg: do not clear nowplaying on every merge Split eit table updates should not clear previous current/nowplaying status sent from another table update. Fixes the missing or dissapearing nowplaying with ts programs. 27 February 2016, 12:46:29 UTC
dd98ce6 demux: ts: remove useless mtime->time conversions 27 February 2016, 12:46:29 UTC
6a1d414 demux: ts: move eit event start/length to programs current event is relative to programs, not to first eit callback 27 February 2016, 12:46:28 UTC
1319972 demux: ts: add pmt helper 27 February 2016, 12:46:28 UTC
dfd028f demux: mp4: remove old stream_Tell/stream_Read workarounds 27 February 2016, 12:46:08 UTC
6a31573 direct3d: Fix green lines. This patch reworks a bit the way we handle textures & surfaces. The surface is the size of the decoder buffer (i_width/i_height) The texture is the size of the visible picture (i_visible_*) StretchRect is now copying only the valuable parts of the decoder buffer (ie. it includes offsets & visible_*) Fix #16597 26 February 2016, 19:10:04 UTC
dd5040a contrib: fix building zlib under mingw Otherwise we just get the error message "Please use win32/Makefile.gcc instead." And win32/Makefile.gcc is not usable with our CFLAGS Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 26 February 2016, 17:34:25 UTC
6942be9 avformat mux: check malloc return 26 February 2016, 17:22:12 UTC
ed5614a direct3d11: keep the surface buffer locked until we're finished writing Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 26 February 2016, 17:14:55 UTC
5265909 contrib: ignore IDL files downloaded for d3d11 Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 26 February 2016, 17:10:37 UTC
d844385 asf: fix memory leaks Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 26 February 2016, 17:00:44 UTC
cf7ca5f vpx: fix memory leak Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 26 February 2016, 17:00:44 UTC
99006df mux: mp4: fix memory leak Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org> 26 February 2016, 17:00:44 UTC
back to top