-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom.xml
More file actions
464 lines (289 loc) · 16.9 KB
/
atom.xml
File metadata and controls
464 lines (289 loc) · 16.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Android杂文 - yydcdut</title>
<subtitle>Android (ง •̀_•́)ง</subtitle>
<link href="/atom.xml" rel="self"/>
<link href="http://yydcdut.com/"/>
<updated>2019-08-03T12:43:43.982Z</updated>
<id>http://yydcdut.com/</id>
<author>
<name>yydcdut</name>
</author>
<generator uri="http://hexo.io/">Hexo</generator>
<entry>
<title>Glide源码解析</title>
<link href="http://yydcdut.com/2019/08/03/glide-analyse/"/>
<id>http://yydcdut.com/2019/08/03/glide-analyse/</id>
<published>2019-08-03T12:33:13.000Z</published>
<updated>2019-08-03T12:43:43.982Z</updated>
<summary type="html">
<blockquote>
<p>Github: <a href="https://github.com/bumptech/glide">Glide</a> 分析版本:<a href="https://github.com/bumptech/glide/tree/85bf0c32f797c04c7d2be87589e075040c3bfb7e">85bf0c3</a></p>
</blockquote>
<p>An image loading and caching library for Android focused on smooth scrolling</p>
</summary>
<category term="Android" scheme="http://yydcdut.com/categories/Android/"/>
<category term="Glide" scheme="http://yydcdut.com/tags/Glide/"/>
<category term="源码" scheme="http://yydcdut.com/tags/%E6%BA%90%E7%A0%81/"/>
</entry>
<entry>
<title>Java动态代理原理</title>
<link href="http://yydcdut.com/2019/07/14/java-dynamic-proxy/"/>
<id>http://yydcdut.com/2019/07/14/java-dynamic-proxy/</id>
<published>2019-07-14T06:48:42.000Z</published>
<updated>2019-08-03T12:44:28.169Z</updated>
<summary type="html">
<blockquote>
<p>分析版本: JDK1.8</p>
</blockquote>
<p>代理类在程序运行时创建的代理方式被成为动态代理</p>
</summary>
<category term="Java" scheme="http://yydcdut.com/categories/Java/"/>
<category term="Java" scheme="http://yydcdut.com/tags/Java/"/>
<category term="源码" scheme="http://yydcdut.com/tags/%E6%BA%90%E7%A0%81/"/>
</entry>
<entry>
<title>retrofit源码简析</title>
<link href="http://yydcdut.com/2019/07/13/retrofit-analyse/"/>
<id>http://yydcdut.com/2019/07/13/retrofit-analyse/</id>
<published>2019-07-13T09:08:22.000Z</published>
<updated>2019-07-13T09:12:36.538Z</updated>
<summary type="html">
<blockquote>
<p>Github: <a href="https://github.com/square/retrofit">retrofit</a> 分析版本:<a href="https://github.com/square/retrofit/commit/2851c14578a7722da56fabbee8d71e1c8e50c145">2851c14</a></p>
</blockquote>
<p>Type-safe HTTP client for Android and Java</p>
</summary>
<category term="Android" scheme="http://yydcdut.com/categories/Android/"/>
<category term="retrofit" scheme="http://yydcdut.com/tags/retrofit/"/>
<category term="源码" scheme="http://yydcdut.com/tags/%E6%BA%90%E7%A0%81/"/>
</entry>
<entry>
<title>OkHttp - CallServerInterceptor源码简析</title>
<link href="http://yydcdut.com/2019/07/12/okhttp-call-server-interceptor-analyse/"/>
<id>http://yydcdut.com/2019/07/12/okhttp-call-server-interceptor-analyse/</id>
<published>2019-07-12T15:00:27.000Z</published>
<updated>2019-07-12T15:01:15.499Z</updated>
<summary type="html">
<blockquote>
<p>Github: <a href="https://github.com/square/okhttp">okhttp</a> 分析版本:<a href="https://github.com/square/okhttp/tree/930d4d07d836aef3c2681867d6ab9e73c23aacfb">930d4d0</a></p>
</blockquote>
<p>This is the last interceptor in the chain. It makes a network call to the server</p>
</summary>
<category term="Android" scheme="http://yydcdut.com/categories/Android/"/>
<category term="OkHttp" scheme="http://yydcdut.com/tags/OkHttp/"/>
<category term="源码" scheme="http://yydcdut.com/tags/%E6%BA%90%E7%A0%81/"/>
</entry>
<entry>
<title>OkHttp - ConnectInterceptor源码简析</title>
<link href="http://yydcdut.com/2019/07/11/okhttp-connect-interceptor-analyse/"/>
<id>http://yydcdut.com/2019/07/11/okhttp-connect-interceptor-analyse/</id>
<published>2019-07-11T10:57:16.000Z</published>
<updated>2019-07-11T10:58:13.993Z</updated>
<summary type="html">
<blockquote>
<p>Github: <a href="https://github.com/square/okhttp">okhttp</a> 分析版本:<a href="https://github.com/square/okhttp/tree/930d4d07d836aef3c2681867d6ab9e73c23aacfb">930d4d0</a></p>
</blockquote>
<p>Opens a connection to the target server and proceeds to the next interceptor</p>
</summary>
<category term="Android" scheme="http://yydcdut.com/categories/Android/"/>
<category term="OkHttp" scheme="http://yydcdut.com/tags/OkHttp/"/>
<category term="源码" scheme="http://yydcdut.com/tags/%E6%BA%90%E7%A0%81/"/>
</entry>
<entry>
<title>OkHttp - CacheInterceptor源码简析</title>
<link href="http://yydcdut.com/2019/07/10/okhttp-cache-interceptor-analyse/"/>
<id>http://yydcdut.com/2019/07/10/okhttp-cache-interceptor-analyse/</id>
<published>2019-07-10T09:29:19.000Z</published>
<updated>2019-07-10T09:32:39.841Z</updated>
<summary type="html">
<blockquote>
<p>Github: <a href="https://github.com/square/okhttp">okhttp</a> 分析版本:<a href="https://github.com/square/okhttp/tree/930d4d07d836aef3c2681867d6ab9e73c23aacfb">930d4d0</a></p>
</blockquote>
<p>Serves requests from the cache and writes responses to the cache</p>
</summary>
<category term="Android" scheme="http://yydcdut.com/categories/Android/"/>
<category term="OkHttp" scheme="http://yydcdut.com/tags/OkHttp/"/>
<category term="源码" scheme="http://yydcdut.com/tags/%E6%BA%90%E7%A0%81/"/>
</entry>
<entry>
<title>OkHttp - BridgeInterceptor源码简析</title>
<link href="http://yydcdut.com/2019/07/09/okhttp-bridge-interceptor-analyse/"/>
<id>http://yydcdut.com/2019/07/09/okhttp-bridge-interceptor-analyse/</id>
<published>2019-07-09T07:27:07.000Z</published>
<updated>2019-07-09T07:28:06.863Z</updated>
<summary type="html">
<blockquote>
<p>Github: <a href="https://github.com/square/okhttp">okhttp</a> 分析版本:<a href="https://github.com/square/okhttp/tree/930d4d07d836aef3c2681867d6ab9e73c23aacfb">930d4d0</a></p>
</blockquote>
<p>Bridges from application code to network code</p>
</summary>
<category term="Android" scheme="http://yydcdut.com/categories/Android/"/>
<category term="OkHttp" scheme="http://yydcdut.com/tags/OkHttp/"/>
<category term="源码" scheme="http://yydcdut.com/tags/%E6%BA%90%E7%A0%81/"/>
</entry>
<entry>
<title>OkHttp - RetryAndFollowUpInterceptor源码简析</title>
<link href="http://yydcdut.com/2019/07/08/okhttp-retry-and-follow-up-interceptor-analyse/"/>
<id>http://yydcdut.com/2019/07/08/okhttp-retry-and-follow-up-interceptor-analyse/</id>
<published>2019-07-08T02:47:16.000Z</published>
<updated>2019-07-09T07:27:34.334Z</updated>
<summary type="html">
<blockquote>
<p>Github: <a href="https://github.com/square/okhttp">okhttp</a> 分析版本:<a href="https://github.com/square/okhttp/tree/930d4d07d836aef3c2681867d6ab9e73c23aacfb">930d4d0</a></p>
</blockquote>
<p>This interceptor recovers from failures and follows redirects as necessary</p>
</summary>
<category term="Android" scheme="http://yydcdut.com/categories/Android/"/>
<category term="OkHttp" scheme="http://yydcdut.com/tags/OkHttp/"/>
<category term="源码" scheme="http://yydcdut.com/tags/%E6%BA%90%E7%A0%81/"/>
</entry>
<entry>
<title>OkHttp源码解析</title>
<link href="http://yydcdut.com/2019/07/07/okhttp-analyse/"/>
<id>http://yydcdut.com/2019/07/07/okhttp-analyse/</id>
<published>2019-07-07T07:04:37.000Z</published>
<updated>2019-07-07T07:08:29.533Z</updated>
<summary type="html">
<blockquote>
<p>Github: <a href="https://github.com/square/okhttp">okhttp</a> 分析版本:<a href="https://github.com/square/okhttp/tree/930d4d07d836aef3c2681867d6ab9e73c23aacfb">930d4d0</a></p>
</blockquote>
<p>An HTTP client for Android, Kotlin, and Java.</p>
</summary>
<category term="Android" scheme="http://yydcdut.com/categories/Android/"/>
<category term="OkHttp" scheme="http://yydcdut.com/tags/OkHttp/"/>
<category term="源码" scheme="http://yydcdut.com/tags/%E6%BA%90%E7%A0%81/"/>
</entry>
<entry>
<title>ijkplayer框架简析 -- 音视频同步</title>
<link href="http://yydcdut.com/2019/07/06/ijkplayer-video-audio-sync/"/>
<id>http://yydcdut.com/2019/07/06/ijkplayer-video-audio-sync/</id>
<published>2019-07-06T08:21:55.000Z</published>
<updated>2019-07-06T08:27:32.147Z</updated>
<summary type="html">
<p>音频和视频是在独自线程中进行解码播放的,需要一个同步的操作来保证时间节点的一致性</p>
</summary>
<category term="c" scheme="http://yydcdut.com/categories/c/"/>
<category term="ijkplayer" scheme="http://yydcdut.com/tags/ijkplayer/"/>
</entry>
<entry>
<title>ijkplayer框架简析 -- 读取数据</title>
<link href="http://yydcdut.com/2019/03/30/ijkplayer-stream-open/"/>
<id>http://yydcdut.com/2019/03/30/ijkplayer-stream-open/</id>
<published>2019-03-30T06:45:52.000Z</published>
<updated>2019-03-30T06:46:47.210Z</updated>
<summary type="html">
<p>IjkMediaPlayer 通过 <code>prepareAsync()</code> 之后去加载数据、解码数据,调用 <code>start()</code> 之后去渲染</p>
</summary>
<category term="c" scheme="http://yydcdut.com/categories/c/"/>
<category term="ijkplayer" scheme="http://yydcdut.com/tags/ijkplayer/"/>
</entry>
<entry>
<title>ijkplayer框架简析 -- 从构造到 onPrepared</title>
<link href="http://yydcdut.com/2019/03/16/ijkplayer-from-constructor-to-prepare/"/>
<id>http://yydcdut.com/2019/03/16/ijkplayer-from-constructor-to-prepare/</id>
<published>2019-03-16T04:22:29.000Z</published>
<updated>2019-07-06T08:20:57.347Z</updated>
<summary type="html">
<p>从本文开始讲解 ijkplayer 相关的,本篇主要将播放器从初始化到 <code>onPrepared</code> 回调回来之间的操作</p>
</summary>
<category term="c" scheme="http://yydcdut.com/categories/c/"/>
<category term="ijkplayer" scheme="http://yydcdut.com/tags/ijkplayer/"/>
</entry>
<entry>
<title>ijkplayer框架简析 -- avcodec_decode_video2</title>
<link href="http://yydcdut.com/2019/03/10/ijkplayer-ffmpeg-avcodec-decode-video2/"/>
<id>http://yydcdut.com/2019/03/10/ijkplayer-ffmpeg-avcodec-decode-video2/</id>
<published>2019-03-10T06:11:20.000Z</published>
<updated>2019-03-10T06:12:31.401Z</updated>
<summary type="html">
<p> <code>avcodec_decode_video2()</code> 的作用是解码一帧视频数据,输入一个压缩编码的结构体 AVPacket,输出一个解码后的结构体 AVFrame</p>
</summary>
<category term="c" scheme="http://yydcdut.com/categories/c/"/>
<category term="ijkplayer" scheme="http://yydcdut.com/tags/ijkplayer/"/>
</entry>
<entry>
<title>ijkplayer框架简析 -- av_read_frame</title>
<link href="http://yydcdut.com/2019/03/09/ijkplayer-ffmpeg-av-read-frame/"/>
<id>http://yydcdut.com/2019/03/09/ijkplayer-ffmpeg-av-read-frame/</id>
<published>2019-03-09T05:25:40.000Z</published>
<updated>2019-03-10T06:10:32.866Z</updated>
<summary type="html">
<p><code>av_read_frame()</code> 的作用是读取码流中的音频若干帧或者视频一帧</p>
</summary>
<category term="c" scheme="http://yydcdut.com/categories/c/"/>
<category term="ijkplayer" scheme="http://yydcdut.com/tags/ijkplayer/"/>
</entry>
<entry>
<title>ijkplayer框架简析 -- avcodec_open2</title>
<link href="http://yydcdut.com/2019/03/03/ijkplayer-ffmpeg-avcodec-open2/"/>
<id>http://yydcdut.com/2019/03/03/ijkplayer-ffmpeg-avcodec-open2/</id>
<published>2019-03-03T04:03:25.000Z</published>
<updated>2019-03-03T04:04:35.385Z</updated>
<summary type="html">
<p><code>avcodec_open2()</code> 主要作用是初始化一个视音频编解码器的 AVCodecContext</p>
</summary>
<category term="c" scheme="http://yydcdut.com/categories/c/"/>
<category term="ijkplayer" scheme="http://yydcdut.com/tags/ijkplayer/"/>
</entry>
<entry>
<title>ijkplayer框架简析 -- avformat_find_stream_info</title>
<link href="http://yydcdut.com/2019/02/24/ijkplayer-ffmpeg-avformat-find-stream-info/"/>
<id>http://yydcdut.com/2019/02/24/ijkplayer-ffmpeg-avformat-find-stream-info/</id>
<published>2019-02-24T06:03:07.000Z</published>
<updated>2019-02-24T06:04:43.848Z</updated>
<summary type="html">
<p><code>avformat_find_stream_info()</code> 主要是读媒体文件的 packet ,然后从中提取出流的信息</p>
</summary>
<category term="c" scheme="http://yydcdut.com/categories/c/"/>
<category term="ijkplayer" scheme="http://yydcdut.com/tags/ijkplayer/"/>
</entry>
<entry>
<title>ijkplayer框架简析 -- avformat_open_input</title>
<link href="http://yydcdut.com/2019/02/23/ijkplayer-ffmpeg-avformat-open-input/"/>
<id>http://yydcdut.com/2019/02/23/ijkplayer-ffmpeg-avformat-open-input/</id>
<published>2019-02-23T05:13:53.000Z</published>
<updated>2019-02-23T05:14:55.289Z</updated>
<summary type="html">
<p> <code>avformat_open_input()</code> 方法完成了媒体文件的打开和格式探测的功能</p>
</summary>
<category term="c" scheme="http://yydcdut.com/categories/c/"/>
<category term="ijkplayer" scheme="http://yydcdut.com/tags/ijkplayer/"/>
</entry>
<entry>
<title>ijkplayer框架简析 -- av_register_all</title>
<link href="http://yydcdut.com/2019/02/17/ijkplayer-ffmpeg-av-register-all/"/>
<id>http://yydcdut.com/2019/02/17/ijkplayer-ffmpeg-av-register-all/</id>
<published>2019-02-17T05:38:34.000Z</published>
<updated>2019-03-03T04:04:40.284Z</updated>
<summary type="html">
<p><code>av_register_all()</code> 是所有使用 FFmpeg 编程中调用的第一个函数。其主要功能是注册所有的 formats 和 protocols</p>
</summary>
<category term="c" scheme="http://yydcdut.com/categories/c/"/>
<category term="ijkplayer" scheme="http://yydcdut.com/tags/ijkplayer/"/>
</entry>
<entry>
<title>ijkplayer框架简析 -- FFmpeg流程</title>
<link href="http://yydcdut.com/2019/02/03/ijkplayer-ffmpeg-flow/"/>
<id>http://yydcdut.com/2019/02/03/ijkplayer-ffmpeg-flow/</id>
<published>2019-02-03T03:30:40.000Z</published>
<updated>2019-02-03T03:36:45.064Z</updated>
<summary type="html">
<p>读取媒体文件中音视频数据的基本功能</p>
</summary>
<category term="c" scheme="http://yydcdut.com/categories/c/"/>
<category term="ijkplayer" scheme="http://yydcdut.com/tags/ijkplayer/"/>
</entry>
<entry>
<title>ijkplayer框架简析 -- FFmpeg中重要结构体</title>
<link href="http://yydcdut.com/2019/02/02/ijkplayer-ffmpeg-relation/"/>
<id>http://yydcdut.com/2019/02/02/ijkplayer-ffmpeg-relation/</id>
<published>2019-02-02T03:09:32.000Z</published>
<updated>2019-02-03T03:38:24.841Z</updated>
<summary type="html">
<p><code>A complete, cross-platform solution to record, convert and stream audio and video.</code></p>
</summary>
<category term="c" scheme="http://yydcdut.com/categories/c/"/>
<category term="ijkplayer" scheme="http://yydcdut.com/tags/ijkplayer/"/>
</entry>
</feed>