[vlc-commits] es_out_timeshift: fix inverted logic

2021-03-31 Thread Zhao Zhili
vlc/vlc-3.0 | branch: master | Zhao Zhili | Sat Sep 8 18:41:58 2018 +0800| [6977abc430a889e19348a55533884bad2c6b1fa5] | committer: Jean-Baptiste Kempf es_out_timeshift: fix inverted logic A test case: vlc -vv --rate 0.5 ~/.local/share/vlc/ml.xspf es_out_GetEmpty return false forever Signed

[vlc-commits] mediacodec: fix AMediaCodec.configure failed on some devices

2021-02-15 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Wed Feb 3 20:53:07 2021 +0800| [1cde6c1cf840f02f2608451e58161a0cdd689f0a] | committer: Alexandre Janniaux mediacodec: fix AMediaCodec.configure failed on some devices fmt_out.video.i_width/i_height are used in MediaCodec configure. They are not set

[vlc-commits] contrib: nvcodec: replace \r\n by \n in hash

2021-02-01 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Sun Jan 31 01:28:57 2021 +0800| [27db51ce4fdfe1460947c1a4994ebd51ffa0c276] | committer: Alexandre Janniaux contrib: nvcodec: replace \r\n by \n in hash Signed-off-by: Alexandre Janniaux > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] opensles_android: report mute state

2021-02-01 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Sat Jan 30 17:52:38 2021 +0800| [088c7876802d4dafdc329f1824282bf83971e9cc] | committer: Alexandre Janniaux opensles_android: report mute state Signed-off-by: Alexandre Janniaux > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] android: utils: build utils as a lib

2021-02-01 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Sun Jan 31 02:07:03 2021 +0800| [e4ff5993e2dccb5505b23e8e6ab477932905fe75] | committer: Alexandre Janniaux android: utils: build utils as a lib Make other targets depend on libandroid_utils instead of duplicate the source code. Signed-off-by: Alexandre

[vlc-commits] demux: avformat: handle AV_PKT_DATA_NEW_EXTRADATA

2021-01-15 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Mon Jan 4 14:11:00 2021 +0100| [6f5605faae12f436d215874f47a6856cdca5da5e] | committer: Steve Lhomme demux: avformat: handle AV_PKT_DATA_NEW_EXTRADATA This is a best-effort solution. Seek may not work as expected. Signed-off-by: Steve Lhomme > h

[vlc-commits] demux: avformat: initialize i_tracks to zero

2021-01-15 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Mon Jan 4 14:11:00 2021 +0100| [3fcd5d9a06fb2d21aab860f63cbab5904fdb2392] | committer: Steve Lhomme demux: avformat: initialize i_tracks to zero So we can use it in CloseDemux() in error path. Signed-off-by: Steve Lhomme > http://git.videolan.

[vlc-commits] contrib: d3d9: fix patch file path

2021-01-07 Thread Zhao Zhili
vlc/vlc-3.0 | branch: master | Zhao Zhili | Thu Dec 31 14:02:00 2020 +0100| [ef615ff0cb6390656e84f7218c561e21bc4c39d8] | committer: Steve Lhomme contrib: d3d9: fix patch file path Signed-off-by: Steve Lhomme > http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commi

[vlc-commits] contrib: support CMAKE_GENERATOR other than makefile

2020-11-24 Thread Zhao Zhili
vlc/vlc-3.0 | branch: master | Zhao Zhili | Wed Nov 4 20:12:49 2020 +0800| [1ad69a1f0ca325a93d24bfbbab454ca9e41d4a5d] | committer: Steve Lhomme contrib: support CMAKE_GENERATOR other than makefile First, fix the conflict setting/using of CMAKE_GENERATOR. Second, call build via cmake instead

[vlc-commits] contrib/SDL_image: disable SDL_image for macOS

2020-11-15 Thread Zhao Zhili
vlc/vlc-3.0 | branch: master | Zhao Zhili | Sun Nov 15 19:12:52 2020 +0800| [d7d601f497f07729ebac871fb8ed9ea3a4b996db] | committer: David Fuhrmann contrib/SDL_image: disable SDL_image for macOS sdl_image module is disabled on macOS, and it's dependency sdl failed to build. Signed-off

[vlc-commits] contrib: support CMAKE_GENERATOR other than makefile

2020-11-05 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Wed Nov 4 20:12:49 2020 +0800| [c74a77e7eba252d0e126e71b59910fc9507ba9ed] | committer: Alexandre Janniaux contrib: support CMAKE_GENERATOR other than makefile First, fix the conflict setting/using of CMAKE_GENERATOR. Second, call build via cmake instead

[vlc-commits] avcodec: remove reset of AVCodecContext draw_horiz_band field

2020-11-03 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Oct 8 14:02:00 2020 +0200| [7f975dec89edbe1b954e6d9f8fc506c742c49e5b] | committer: Steve Lhomme avcodec: remove reset of AVCodecContext draw_horiz_band field The draw_horiz_band field is initialized to NULL by libavcodec. It doesn't been modified since

[vlc-commits] avcodec: don't try recover from align issue

2020-11-02 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Oct 8 18:18:00 2020 +0200| [0fc77253e2cbfdf027f94e0f545cbe2ece0263e4] | committer: Steve Lhomme avcodec: don't try recover from align issue It's unlikely to recover. This saves a pair of picture new/release in error case. Signed-off-by: Steve Lhomme

[vlc-commits] avcodec: use bool type for b_dr_failure

2020-11-02 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Oct 8 18:18:00 2020 +0200| [71af7f552ce2f3198c4a3acd4f34229dcef3a45a] | committer: Steve Lhomme avcodec: use bool type for b_dr_failure Since it's been protected by lock again. Signed-off-by: Steve Lhomme > http://git.videolan.org/gitweb.cgi/vlc.

[vlc-commits] avcodec: extract video_format_t color setting as a function

2020-11-02 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Oct 8 14:08:00 2020 +0200| [439efd8084605755f4916df5f8f0ca740b4e7f6f] | committer: Steve Lhomme avcodec: extract video_format_t color setting as a function Now the APIs for color information conversion are symmetric. Signed-off-by: Steve Lhomme

[vlc-commits] avcodec: remove a conditional compilation

2020-10-16 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Sun Oct 4 18:03:00 2020 +0200| [3a658328fe93637b1423fc5675f7d2190d4d37bf] | committer: Steve Lhomme avcodec: remove a conditional compilation 1. FF_THREAD_FRAME is in the FFmpeg code base since 2011. 2. codec/avcodec/video.c and codec/avcodec/directx_va.c

[vlc-commits] avcodec: use config_ChainDestroy to simplify the code

2020-10-16 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Oct 1 18:47:00 2020 +0200| [0048a9a79cc7c284caaf3fd957efbf7bb84002f3] | committer: Steve Lhomme avcodec: use config_ChainDestroy to simplify the code Signed-off-by: Steve Lhomme > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] config/chain: remove FREENULL usage

2020-10-16 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Sun Oct 4 18:03:00 2020 +0200| [b1c81a0a86fc4c542493be915bd3297b21e413e2] | committer: Steve Lhomme config/chain: remove FREENULL usage It's useless to set struct fields to NULL just before free the struct. Signed-off-by: Steve Lhomme > h

[vlc-commits] clock: check condition before calculation

2020-05-22 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Wed May 20 23:28:04 2020 +0800| [fa1d0ea16d1d519523519592a58e0ba5fa473c4f] | committer: Thomas Guillem clock: check condition before calculation Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] contrib: ffmpeg: remove gas-preprocessor on Android

2019-11-18 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Sun Nov 10 22:47:21 2019 +0800| [5d9e6fb7505dba219bbaf4cb9ebca7b4128061c2] | committer: Marvin Scholz contrib: ffmpeg: remove gas-preprocessor on Android Build vlc-android on macOS was broken since gas-preprocessor fix_unreq is enabled by default on macOS

[vlc-commits] audiotrack: check vlc_cond_timedwait return value against 0

2019-11-07 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Nov 7 21:58:14 2019 +0800| [55a3b5583c7e300481ae9e92cd06443b3ebd2570] | committer: Thomas Guillem audiotrack: check vlc_cond_timedwait return value against 0 Documentation of the API doesn't guarantee any particular error code. Suggested by Thomas

[vlc-commits] android/specific: add missing errno.h include

2019-11-07 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Wed Nov 6 00:44:54 2019 +0800| [b4b5b368982c689ece348ec9ad4e6297616ad177] | committer: Thomas Guillem android/specific: add missing errno.h include Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] android/thread: fix compilation

2019-11-07 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Wed Nov 6 00:44:55 2019 +0800| [a9309979ae1a999463dc9f68ebad94378c65b11c] | committer: Thomas Guillem android/thread: fix compilation strerror_r can be GNU-specific on Android. Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.

[vlc-commits] demux: h26x: fix frame duration

2019-10-11 Thread Zhao Zhili
vlc/vlc-3.0 | branch: master | Zhao Zhili | Sat Aug 4 00:36:13 2018 +0800| [682c12e08530c35432092f4e8289465b302d5f0c] | committer: Francois Cartegnie demux: h26x: fix frame duration Signed-off-by: Jean-Baptiste Kempf (cherry picked from commit f3df4c38e174563a8bf1c42bac8a8e68dd32e0c0

[vlc-commits] sout: transcode: check linear format after assignment

2019-10-07 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Oct 4 11:40:58 2019 +0800| [a8a6a5acbb337b4360ad37726ae1bea51217b934] | committer: Thomas Guillem sout: transcode: check linear format after assignment fix flac transcode failure Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.

[vlc-commits] avcodec: fix version checks

2019-01-03 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Dec 27 16:08:44 2018 +0800| [486fd0b80fbe878f00a906005295cceb4a2fd624] | committer: Rémi Denis-Courmont avcodec: fix version checks Signed-off-by: Rémi Denis-Courmont > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] access_output: rist: remove useless initialisation

2018-11-15 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Nov 13 15:35:17 2018 +0800| [dad24f0b3858e1cfbefb2d861ed12e3add4756b4] | committer: Thomas Guillem access_output: rist: remove useless initialisation Since p_sys is created by vlc_obj_calloc. Signed-off-by: Thomas Guillem > http://git.videolan.

[vlc-commits] access: rist: remove useless memset

2018-11-15 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Nov 13 15:35:15 2018 +0800| [b72164d2c788524601118cebc0e63fbf6bde4375] | committer: Thomas Guillem access: rist: remove useless memset Since p_sys is created by vlc_obj_calloc. Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.

[vlc-commits] access_output: rist: fix error handling

2018-11-15 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Nov 13 15:35:16 2018 +0800| [271ad1ad199a97d60f32361fa9ae317948351361] | committer: Thomas Guillem access_output: rist: fix error handling Mutexes haven't been initialized yet and Clean will call vlc_mutex_destroy. Signed-off-by: Thomas Guillem

[vlc-commits] hw: vaapi: fix memory leak on error path

2018-10-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Oct 19 11:55:42 2018 +0800| [5142340de7897be848144bcd4626c160c33c0101] | committer: Thomas Guillem hw: vaapi: fix memory leak on error path Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] demux: subtitle: set length after subtitle reorder

2018-10-01 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Sep 20 23:36:02 2018 +0800| [0db0a4449467cef70caaa4caf2d8968b4e960e17] | committer: Thomas Guillem demux: subtitle: set length after subtitle reorder Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] darwin: thread: fix invalid ticks conversion

2018-09-28 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Sep 27 20:14:06 2018 +0800| [65407e7030174bb4965b6589d9cdedbb4577949c] | committer: Steve Lhomme darwin: thread: fix invalid ticks conversion Signed-off-by: Steve Lhomme > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] opensles_android: fix typo

2018-09-25 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Sep 25 18:53:36 2018 +0800| [0d95c0e8a2ef8102543a97523c2864b677031681] | committer: Steve Lhomme opensles_android: fix typo > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0d95c0e8a2ef8102543a97523c2864b677031681 --- modules/audio_out

[vlc-commits] input: prevent wild pointer in the case of no attachment

2018-09-24 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Sep 21 09:41:29 2018 +0800| [f49768187fa97e2927f45e9a458e34095514ccdf] | committer: Thomas Guillem input: prevent wild pointer in the case of no attachment Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] video_filter: postproc: remove unused variable

2018-09-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Sep 20 11:19:02 2018 +0800| [88d22578f9ab18e4fb7857477557217017916afd] | committer: Rémi Denis-Courmont video_filter: postproc: remove unused variable Signed-off-by: Rémi Denis-Courmont > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] linsys: remove unused variable

2018-09-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Sep 20 11:18:59 2018 +0800| [586525d74596f03d67df12003179ff545bc0bec4] | committer: Rémi Denis-Courmont linsys: remove unused variable Signed-off-by: Rémi Denis-Courmont > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] x265: fix log format string

2018-09-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Sep 20 11:19:00 2018 +0800| [f632aa4c7c59f84d69e466b8f80ece0ae970c7c2] | committer: Rémi Denis-Courmont x265: fix log format string Signed-off-by: Rémi Denis-Courmont > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] demux: asf: fix log format string

2018-09-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Sep 20 11:19:01 2018 +0800| [1438d0767c842812e502635c320cad4bd178ef62] | committer: Rémi Denis-Courmont demux: asf: fix log format string Signed-off-by: Rémi Denis-Courmont > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] es_out_timeshift: fix inverted logic

2018-09-12 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Sat Sep 8 18:41:58 2018 +0800| [80f1e7235b7b6a769e6924ed96c739b62f7e3385] | committer: Thomas Guillem es_out_timeshift: fix inverted logic A test case: vlc -vv --rate 0.5 ~/.local/share/vlc/ml.xspf es_out_GetEmpty return false forever Signed-off

[vlc-commits] variables: improve CheckValue

2018-08-29 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Aug 28 11:50:05 2018 +0800| [cc9d3c003d5c440818de174c1193b374bbf8750c] | committer: Jean-Baptiste Kempf variables: improve CheckValue Signed-off-by: Jean-Baptiste Kempf > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] demux: h26x: fix frame duration

2018-08-29 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Sat Aug 4 00:36:13 2018 +0800| [f3df4c38e174563a8bf1c42bac8a8e68dd32e0c0] | committer: Jean-Baptiste Kempf demux: h26x: fix frame duration Signed-off-by: Jean-Baptiste Kempf > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] codec: x264: remove unused member

2018-08-29 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Mon Aug 27 17:41:30 2018 +0800| [f7e76a3ec19936128ad400d165729d4243326ec3] | committer: Jean-Baptiste Kempf codec: x264: remove unused member Signed-off-by: Jean-Baptiste Kempf > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] codec: x264: fix leak on error

2018-08-29 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Mon Aug 27 17:41:31 2018 +0800| [25fe1cbf93c0c49882465fed0fbec5ea450684ba] | committer: Jean-Baptiste Kempf codec: x264: fix leak on error Signed-off-by: Jean-Baptiste Kempf > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] doc: sdl_opengl_player: don't use precision qualifier

2018-08-23 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Aug 23 16:43:01 2018 +0800| [7abd50b55ad4323903a0333a056da5a8e55b3030] | committer: Thomas Guillem doc: sdl_opengl_player: don't use precision qualifier Fix fragment shader compilation error: 0:1(1): error: syntax error, unexpected NEW_IDENTIFIER

[vlc-commits] vgl: don't call cleanup callback if nothing has done

2018-08-23 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Aug 23 17:24:19 2018 +0800| [1089b77dc9f315f946881f38250d04bf265da270] | committer: Thomas Guillem vgl: don't call cleanup callback if nothing has done Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] vgl: remove unused member

2018-08-23 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Aug 23 16:42:58 2018 +0800| [fc5b67d942b97e2bbc622f064844671fce0263f6] | committer: Thomas Guillem vgl: remove unused member Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] doc: sdl_opengl_player: check OpenGL compile and link status

2018-08-23 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Aug 23 16:43:00 2018 +0800| [77fa1e6de3f56bcde473de2e33699a97d97c954f] | committer: Thomas Guillem doc: sdl_opengl_player: check OpenGL compile and link status Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] vout: android: don't overwrite projection_mode for opaque

2018-08-22 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Wed Aug 22 11:52:43 2018 +0800| [12583bc5e5fe47e88c75f685ba04afb9ec9d08f0] | committer: Thomas Guillem vout: android: don't overwrite projection_mode for opaque Fix "Failed to adapt decoder format to display" and fallback to software decoder.

[vlc-commits] opensles: kill warning about sign comparison

2018-08-17 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Aug 17 11:13:17 2018 +0800| [b9d1da5ef8bc66a2f7a16d49c4b01f2141dcebe7] | committer: Thomas Guillem opensles: kill warning about sign comparison Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] packetizer: hevc_nal: fix visiable size

2018-08-17 Thread Zhao Zhili
vlc/vlc-3.0 | branch: master | Zhao Zhili | Thu Aug 16 11:18:36 2018 +0800| [e45628283d53af07e0299599928ded3b674372d5] | committer: Francois Cartegnie packetizer: hevc_nal: fix visiable size Signed-off-by: Francois Cartegnie (cherry picked from commit 596b67eb798ca4fa37ca61c2e576cefebe3c92c9

[vlc-commits] packetizer: hevc_nal: fix visiable size

2018-08-16 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Aug 16 11:18:36 2018 +0800| [596b67eb798ca4fa37ca61c2e576cefebe3c92c9] | committer: Francois Cartegnie packetizer: hevc_nal: fix visiable size Signed-off-by: Francois Cartegnie > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] packetizer: hevc: fix typo

2018-08-15 Thread Zhao Zhili
vlc/vlc-3.0 | branch: master | Zhao Zhili | Fri Aug 10 17:24:53 2018 +0800| [3a0e78218a224756f8a0303d2e566e5622a49c1b] | committer: Francois Cartegnie packetizer: hevc: fix typo Signed-off-by: Francois Cartegnie (cherry picked from commit 2d0c701fb6c3745648e1bb9694f21a354643a7d1) > h

[vlc-commits] packetizer: hevc: fix typo

2018-08-15 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Aug 10 17:24:53 2018 +0800| [2d0c701fb6c3745648e1bb9694f21a354643a7d1] | committer: Francois Cartegnie packetizer: hevc: fix typo Signed-off-by: Francois Cartegnie > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] vout: android: allow force select android-opaque

2018-08-10 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Aug 10 10:45:00 2018 +0800| [7515f84fd2819860073299e644908afddf43c6cd] | committer: Thomas Guillem vout: android: allow force select android-opaque This allows the following use case: the user of libvlc do render itself with OpenGLES and interoperate

[vlc-commits] mediacodec: fix rotation handling

2018-08-08 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Aug 7 12:47:02 2018 +0800| [d4e1b747db3f6a17ba547c1c07184db56c13c54f] | committer: Thomas Guillem mediacodec: fix rotation handling Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] mediacodec: fix rotation handling

2018-08-08 Thread Zhao Zhili
vlc/vlc-3.0 | branch: master | Zhao Zhili | Tue Aug 7 12:47:02 2018 +0800| [05ae946c651666a2316f9ec497f00cacf5ccdab3] | committer: Thomas Guillem mediacodec: fix rotation handling Signed-off-by: Thomas Guillem (cherry picked from commit 2142b90d7ecb2d38bb7e11db36344d3d8ed80335) Signed-off

[vlc-commits] mediacodec: fix check on csd i_count

2018-08-08 Thread Zhao Zhili
vlc/vlc-3.0 | branch: master | Zhao Zhili | Thu Aug 2 16:53:19 2018 +0800| [fb5fc884310ad372055b6b9961096f5967448c88] | committer: Thomas Guillem mediacodec: fix check on csd i_count Signed-off-by: Thomas Guillem (cherry picked from commit 0cdd6619555ddbee99f1097ecfbaefe22c7dafab) Signed

[vlc-commits] mediacodec: fix check on csd i_count

2018-08-08 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Aug 2 16:53:19 2018 +0800| [4ab20fb67875b00faf9ed0caf6e7df1c335cb54b] | committer: Thomas Guillem mediacodec: fix check on csd i_count Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] contrib: dos2unix of diffpatch.sh

2018-07-31 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jul 31 14:56:08 2018 +0800| [a671aae8fc1b707ee2e9a8456abf8dc11afdda75] | committer: Steve Lhomme contrib: dos2unix of diffpatch.sh > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a671aae8fc1b707ee2e9a8456abf8dc11afdda75 --- cont

[vlc-commits] directdraw: link to dxguid and remove GUID definition

2018-07-12 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Jul 12 17:28:45 2018 +0800| [77934be8840c2380c6fd30be350c70a92773c8cb] | committer: Hugo Beauzée-Luyssen directdraw: link to dxguid and remove GUID definition Fix static build error: plugins/libmft_plugin.a(mft.o):mft.c:(.rdata$IID_IDirectDrawSurface2

[vlc-commits] d3d9_fmt and d3d11_fmt: inline ActivePictureSys()

2018-07-12 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Jul 12 11:36:41 2018 +0800| [a3d8e30b56561a23fceb400f2b22b00aa7ca8560] | committer: Steve Lhomme d3d9_fmt and d3d11_fmt: inline ActivePictureSys() Fix static build. Signed-off-by: Steve Lhomme > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] demux: ts: remove useless initialization

2018-07-11 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 1 17:55:54 2018 +0800| [ce3638827b3cd1be91fae3810c4af9315279003d] | committer: Jean-Baptiste Kempf demux: ts: remove useless initialization Signed-off-by: Jean-Baptiste Kempf > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] input: es_out: use vlc_tick_t

2018-07-02 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Mon Jul 2 10:54:24 2018 +0800| [fba6da91947bb095b2be4606aa54d34f121cedac] | committer: Thomas Guillem input: es_out: use vlc_tick_t Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] input: add a new type input_control_param_t to extend control

2018-06-29 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Mon Jun 25 16:03:48 2018 +0800| [918b99d421fc9d698fc1d19e840aec3738c1c192] | committer: Thomas Guillem input: add a new type input_control_param_t to extend control Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] libvlc: support setting seek mode

2018-06-29 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Mon Jun 25 16:03:50 2018 +0800| [cca06c4a3a0a7a61fbc05d392a17436566bef44b] | committer: Thomas Guillem libvlc: support setting seek mode Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] prefetch: handle STREAM_GET_TAGS

2018-06-29 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 29 17:46:07 2018 +0800| [c53aefcc786e9022a571a27fb4c694d8bb571d1b] | committer: Thomas Guillem prefetch: handle STREAM_GET_TAGS Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] demux: avformat: refactor ResetTime

2018-06-29 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Mon Jun 25 23:40:19 2018 +0800| [9c55803e738f2a0aa26c0ec1c52c0e2ad14d221b] | committer: Thomas Guillem demux: avformat: refactor ResetTime 1. Function definition doesn't match prototype 2. It made an underlying assumption that CLOCK_FREQ is equal

[vlc-commits] demux: avformat: handle fast seeking

2018-06-29 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jun 26 18:01:14 2018 +0800| [926325533b82e7630378d9dff27fbcaadcbd3839] | committer: Thomas Guillem demux: avformat: handle fast seeking Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] input: add input_SetTime and input_SetPosition

2018-06-29 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Mon Jun 25 16:03:49 2018 +0800| [58d823d03e70f0dcd1419de3ff07f3b0423e4653] | committer: Thomas Guillem input: add input_SetTime and input_SetPosition Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] codec: vpx: use VLC_TS_INVALID

2018-06-28 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 29 10:56:43 2018 +0800| [0fff484a85699bdc2bff7a27e7587ba47f5028b0] | committer: Tristan Matthews codec: vpx: use VLC_TS_INVALID Signed-off-by: Tristan Matthews > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] codec: aom: use VLC_TS_INVALID

2018-06-28 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 29 10:44:12 2018 +0800| [efff6ccbf734048e1d7593e83c2059e9b09112e6] | committer: Tristan Matthews codec: aom: use VLC_TS_INVALID Signed-off-by: Tristan Matthews > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] demux: mkv: fix more hvcC detection

2018-06-25 Thread Zhao Zhili
vlc/vlc-3.0 | branch: master | Zhao Zhili | Mon Jun 11 20:54:37 2018 +0800| [87a83eb9f3cc010d0d1603bbb3976c69ce2d20be] | committer: Jean-Baptiste Kempf demux: mkv: fix more hvcC detection MKV files made by DivXMKVMux 9.8.12.1750 are broken too. FFmpeg hevc_parse.c did the same thing

[vlc-commits] packetizer: mjpeg: initialize all callback fields

2018-06-20 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jun 19 20:11:38 2018 +0800| [3445d07018f67631369b2997796005f97f76beeb] | committer: Thomas Guillem packetizer: mjpeg: initialize all callback fields Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] packetizer: dts: initialize all callback fields

2018-06-20 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jun 19 20:11:36 2018 +0800| [a65e9baad9494fb5ccac06338e8f914f9daae6ce] | committer: Thomas Guillem packetizer: dts: initialize all callback fields Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] packetizer: mpeg4video: initialize all callback fields

2018-06-20 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jun 19 20:11:41 2018 +0800| [41b959afaa0a8e78c34b77a68c606b8d287450d9] | committer: Thomas Guillem packetizer: mpeg4video: initialize all callback fields Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] packetizer: a52: initialize all callback fields

2018-06-20 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jun 19 20:11:33 2018 +0800| [233ab88be0f3d7901e39e6b577bb3ed1d68f3cef] | committer: Thomas Guillem packetizer: a52: initialize all callback fields Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] packetizer: mpegaudio: initialize all callback fields

2018-06-20 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jun 19 20:11:42 2018 +0800| [2b1a177aa52490cb085f5181e43f90b9b4f56a2b] | committer: Thomas Guillem packetizer: mpegaudio: initialize all callback fields Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] packetizer: vc1: reorder initialization

2018-06-20 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jun 19 20:11:43 2018 +0800| [23aa0e8211803ad5b22eda8f5c3ae91cb3c7d830] | committer: Thomas Guillem packetizer: vc1: reorder initialization Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] packetizer: avparser: initialize all callback fields

2018-06-20 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jun 19 20:11:34 2018 +0800| [61e5bf86df7f52c62702716c2f88611a68c578d2] | committer: Thomas Guillem packetizer: avparser: initialize all callback fields Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] packetizer: flac: initialize all callback fields

2018-06-20 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jun 19 20:11:37 2018 +0800| [0ad35af220233e900e450922e353ce650178f4dd] | committer: Thomas Guillem packetizer: flac: initialize all callback fields Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] packetizer: mpeg4audio: initialize all callback fields

2018-06-20 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jun 19 20:11:40 2018 +0800| [169a39b72e4863e351db44efd14b8c5e7adb2965] | committer: Thomas Guillem packetizer: mpeg4audio: initialize all callback fields Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] packetizer: copy: reorder and initialize all callback fields

2018-06-20 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jun 19 20:11:35 2018 +0800| [3f76cba1fee4af299226cfd3a25aa469287f30ad] | committer: Thomas Guillem packetizer: copy: reorder and initialize all callback fields Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] vlc_codec: put pf_decode and pf_packetize into a union

2018-06-20 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jun 19 20:23:45 2018 +0800| [34b1d4f1ee60bff92cf8b8f577cb67a09e53e39a] | committer: Thomas Guillem vlc_codec: put pf_decode and pf_packetize into a union Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] packetizer: mlp: initialize all callback fields

2018-06-20 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Tue Jun 19 20:11:39 2018 +0800| [94267c2236ce0b95a12c77a0759e1ed38b9e] | committer: Thomas Guillem packetizer: mlp: initialize all callback fields Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] codec: svcdsub: prepare to put pf_packetize and pf_decode into a union

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:09 2018 +0800| [6a20d09cd262a1c1140dd7266195255343547edd] | committer: Thomas Guillem codec: svcdsub: prepare to put pf_packetize and pf_decode into a union Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.

[vlc-commits] codec: oggspots: prepare to put pf_packetize and pf_decode into a union

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:13 2018 +0800| [05298fb399ab17e8682004e017c7001f6709a544] | committer: Thomas Guillem codec: oggspots: prepare to put pf_packetize and pf_decode into a union Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.

[vlc-commits] codec: kate: prepare to put pf_packetize and pf_decode into a union

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:19 2018 +0800| [69fb11904e68e8f276682a09e55f9822db2709f8] | committer: Thomas Guillem codec: kate: prepare to put pf_packetize and pf_decode into a union Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=com

[vlc-commits] packetizer: flac: prepare to put pf_packetize and pf_decode into a union

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:20 2018 +0800| [6aba64838d1e94b15a7b5f64015356247b3edbf2] | committer: Thomas Guillem packetizer: flac: prepare to put pf_packetize and pf_decode into a union Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.

[vlc-commits] codec: rawvideo: set pf_flush callback for packetizer

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:17 2018 +0800| [463eda98806f72180f340abbb93ae42e2fed504c] | committer: Thomas Guillem codec: rawvideo: set pf_flush callback for packetizer Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] codec: daala: prepare to put pf_packetize and pf_decode into a union

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:14 2018 +0800| [a585cb1af0794aabb5e7b5c9c30ccf1ba86b70eb] | committer: Thomas Guillem codec: daala: prepare to put pf_packetize and pf_decode into a union Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.

[vlc-commits] codec: spudec: prepare to put pf_packetize and pf_decode into a union

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:11 2018 +0800| [1c820ca4e017f08dc173dfcde02e5bf1e56c9f89] | committer: Thomas Guillem codec: spudec: prepare to put pf_packetize and pf_decode into a union Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.

[vlc-commits] codec: spudec: check malloc

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:18 2018 +0800| [833187d4176c7331ca8bfef5bfd2463a20aa1dba] | committer: Thomas Guillem codec: spudec: check malloc Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commi

[vlc-commits] codec: cvdsub: prepare to put pf_packetize and pf_decode into a union

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:10 2018 +0800| [f0db636b033df4820604f355d4aad96760c003d2] | committer: Thomas Guillem codec: cvdsub: prepare to put pf_packetize and pf_decode into a union Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.

[vlc-commits] codec: lpcm: prepare to put pf_packetize and pf_decode into a union

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:12 2018 +0800| [97cd77ef35b4302e8bf44590c284e94cc6020dc2] | committer: Thomas Guillem codec: lpcm: prepare to put pf_packetize and pf_decode into a union Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=com

[vlc-commits] codec: theora: prepare to put pf_packetize and pf_decode into a union

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:16 2018 +0800| [72845f74008fcddad118b851e70b71053dd11aa7] | committer: Thomas Guillem codec: theora: prepare to put pf_packetize and pf_decode into a union Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.

[vlc-commits] codec: vorbis: prepare to put pf_packetize and pf_decode into a union

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:08 2018 +0800| [e5ece5e5eee53a1ffd8c00afc866d9343d15722b] | committer: Thomas Guillem codec: vorbis: prepare to put pf_packetize and pf_decode into a union Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.

[vlc-commits] codec: speex: prepare to put pf_packetize and pf_decode into a union

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:15 2018 +0800| [ff9487367016c1bec3abc82fa909f16d46f9e17e] | committer: Thomas Guillem codec: speex: prepare to put pf_packetize and pf_decode into a union Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.

[vlc-commits] codec: aes3: prepare to put pf_packetize and pf_decode into a union

2018-06-19 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Fri Jun 8 17:47:07 2018 +0800| [00dbb2deb1f266dcf979e343f2bd0f82a33288a4] | committer: Thomas Guillem codec: aes3: prepare to put pf_packetize and pf_decode into a union Signed-off-by: Thomas Guillem > http://git.videolan.org/gitweb.cgi/vlc.git/?a=com

[vlc-commits] demux: mkv: fix more hvcC detection

2018-06-11 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Mon Jun 11 20:54:37 2018 +0800| [6de3cec0ca402f0085372f6839cfb1d63c9afc38] | committer: Francois Cartegnie demux: mkv: fix more hvcC detection MKV files made by DivXMKVMux 9.8.12.1750 are broken too. FFmpeg hevc_parse.c did the same thing to workaround

[vlc-commits] codec: opus: remove packetizer callback

2018-06-07 Thread Zhao Zhili
vlc | branch: master | Zhao Zhili | Thu Jun 7 16:52:27 2018 +0800| [c774873399fb8ac2f95de4a983198c69dffba737] | committer: Thomas Guillem codec: opus: remove packetizer callback It doesn't has the capability of a packetizer. Signed-off-by: Thomas Guillem > http://git.videolan.

  1   2   3   >