Re: [FFmpeg-devel] [PATCH v6] avformat/dashdec: add dash demuxer base version

2017-03-22 Thread Steven Liu
2017-03-22 22:36 GMT+08:00 Rodger Combs : > > > On Mar 22, 2017, at 09:31, Steven Liu wrote: > > > > 2017-03-22 22:01 GMT+08:00 Rodger Combs rodger.co...@gmail.com>>: > > > >> > >>> On Mar 21, 2017, at 08:16, Steven Liu wrote: > >>> > >>> v2 fixed: > >>> 1. from autodetect to disabled > >>> 2.

Re: [FFmpeg-devel] [PATCH v6] avformat/dashdec: add dash demuxer base version

2017-03-22 Thread Rodger Combs
> On Mar 22, 2017, at 09:31, Steven Liu wrote: > > 2017-03-22 22:01 GMT+08:00 Rodger Combs >: > >> >>> On Mar 21, 2017, at 08:16, Steven Liu wrote: >>> >>> v2 fixed: >>> 1. from autodetect to disabled >>> 2. from camelCase code style to ffmpeg code style >>> 3

Re: [FFmpeg-devel] [PATCH v6] avformat/dashdec: add dash demuxer base version

2017-03-22 Thread Steven Liu
2017-03-22 22:01 GMT+08:00 Rodger Combs : > > > On Mar 21, 2017, at 08:16, Steven Liu wrote: > > > > v2 fixed: > > 1. from autodetect to disabled > > 2. from camelCase code style to ffmpeg code style > > 3. from RepType to AVMediaType > > 4. fix variable typo > > 5. change time value from uint32_

Re: [FFmpeg-devel] [PATCH v6] avformat/dashdec: add dash demuxer base version

2017-03-22 Thread Rodger Combs
> On Mar 21, 2017, at 08:16, Steven Liu wrote: > > v2 fixed: > 1. from autodetect to disabled > 2. from camelCase code style to ffmpeg code style > 3. from RepType to AVMediaType > 4. fix variable typo > 5. change time value from uint32_t to uint64_t > 6. removed be used once API > 7. change 'ti

[FFmpeg-devel] [PATCH v6] avformat/dashdec: add dash demuxer base version

2017-03-21 Thread Steven Liu
v2 fixed: 1. from autodetect to disabled 2. from camelCase code style to ffmpeg code style 3. from RepType to AVMediaType 4. fix variable typo 5. change time value from uint32_t to uint64_t 6. removed be used once API 7. change 'time(NULL)`, except it is not 2038-safe.' to av_gettime and av_timegm

[FFmpeg-devel] [PATCH v6] avformat/dashdec: add dash demuxer base version

2017-03-21 Thread Steven Liu
Test Reply mail use git send-email ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH v6] avformat/dashdec: add dash demuxer base version

2017-03-21 Thread Ricardo Constantino
On 21 March 2017 at 22:50, Steven Liu wrote: > I don't know how to replay to an old thread with the patch by git > send-email :( > > Find the email you want to reply to in http://lists.ffmpeg.org/pipermail/ffmpeg-devel/2017-March/thread.html and check the link in the address. It should contain th

Re: [FFmpeg-devel] [PATCH v6] avformat/dashdec: add dash demuxer base version

2017-03-21 Thread Steven Liu
2017-03-22 7:23 GMT+08:00 Steven Liu : > v2 fixed: > 1. from autodetect to disabled > 2. from camelCase code style to ffmpeg code style > 3. from RepType to AVMediaType > 4. fix variable typo > 5. change time value from uint32_t to uint64_t > 6. removed be used once API > 7. change 'time(NULL)`, e

[FFmpeg-devel] [PATCH v6] avformat/dashdec: add dash demuxer base version

2017-03-21 Thread Steven Liu
v2 fixed: 1. from autodetect to disabled 2. from camelCase code style to ffmpeg code style 3. from RepType to AVMediaType 4. fix variable typo 5. change time value from uint32_t to uint64_t 6. removed be used once API 7. change 'time(NULL)`, except it is not 2038-safe.' to av_gettime and av_timegm

Re: [FFmpeg-devel] [PATCH v6] avformat/dashdec: add dash demuxer base version

2017-03-21 Thread Steven Liu
Ricardo Constantino 于2017年3月22日 周三上午12:27写道: > On 2017-03-21 13:16, Steven Liu wrote: > > @@ -5920,6 +5923,7 @@ enabled openssl && { use_pkg_config > openssl openssl/ssl.h OPENSSL_init > > check_lib openssl/ssl.h SSL_library_init > -lssl -lcrypto -lws2_32

Re: [FFmpeg-devel] [PATCH v6] avformat/dashdec: add dash demuxer base version

2017-03-21 Thread Ricardo Constantino
On 2017-03-21 13:16, Steven Liu wrote: > @@ -5920,6 +5923,7 @@ enabled openssl && { use_pkg_config openssl > openssl/ssl.h OPENSSL_init > check_lib openssl/ssl.h SSL_library_init > -lssl -lcrypto -lws2_32 -lgdi32 || > die "

[FFmpeg-devel] [PATCH v6] avformat/dashdec: add dash demuxer base version

2017-03-21 Thread Steven Liu
v2 fixed: 1. from autodetect to disabled 2. from camelCase code style to ffmpeg code style 3. from RepType to AVMediaType 4. fix variable typo 5. change time value from uint32_t to uint64_t 6. removed be used once API 7. change 'time(NULL)`, except it is not 2038-safe.' to av_gettime and av_timegm