-
Notifications
You must be signed in to change notification settings - Fork 2
/
profile
2215 lines (2176 loc) · 150 KB
/
profile
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Flat profile:
Each sample counts as 0.01 seconds.
no time accumulated
% cumulative self self total
time seconds seconds calls Ts/call Ts/call name
0.00 0.00 0.00 30313651 0.00 0.00 x264_pixel_satd_8x4
0.00 0.00 0.00 9727152 0.00 0.00 get_ref
0.00 0.00 0.00 8149741 0.00 0.00 x264_pixel_satd_8x8
0.00 0.00 0.00 5858429 0.00 0.00 x264_pixel_satd_4x4
0.00 0.00 0.00 5378572 0.00 0.00 sub4x4_dct
0.00 0.00 0.00 4118339 0.00 0.00 mc_chroma
0.00 0.00 0.00 3104856 0.00 0.00 x264_pixel_satd_8x4.constprop.9
0.00 0.00 0.00 3017143 0.00 0.00 x264_8_cabac_encode_decision_c
0.00 0.00 0.00 1643033 0.00 0.00 x264_pixel_satd_16x16
0.00 0.00 0.00 1475506 0.00 0.00 x264_pixel_sad_x4_8x8
0.00 0.00 0.00 1348164 0.00 0.00 x264_pixel_sad_16x16
0.00 0.00 0.00 1307120 0.00 0.00 x264_pixel_sad_8x8
0.00 0.00 0.00 1250842 0.00 0.00 x264_8_mb_predict_mv
0.00 0.00 0.00 1244376 0.00 0.00 pixel_hadamard_ac
0.00 0.00 0.00 1173481 0.00 0.00 quant_4x4x4
0.00 0.00 0.00 1167819 0.00 0.00 x264_pixel_satd_4x4.constprop.12
0.00 0.00 0.00 1083114 0.00 0.00 sa8d_8x8
0.00 0.00 0.00 1083114 0.00 0.00 x264_pixel_sa8d_8x8
0.00 0.00 0.00 1009151 0.00 0.00 x264_pixel_sad_x3_8x8
0.00 0.00 0.00 900686 0.00 0.00 x264_pixel_sad_x4_16x16
0.00 0.00 0.00 813361 0.00 0.00 refine_subpel
0.00 0.00 0.00 813361 0.00 0.00 x264_8_me_search_ref
0.00 0.00 0.00 705117 0.00 0.00 x264_pixel_ssd_8x8
0.00 0.00 0.00 703938 0.00 0.00 sa8d_8x8.constprop.0
0.00 0.00 0.00 697789 0.00 0.00 quant_8x8
0.00 0.00 0.00 697789 0.00 0.00 sub8x8_dct8
0.00 0.00 0.00 688375 0.00 0.00 x264_8_predict_4x4_h_c
0.00 0.00 0.00 684648 0.00 0.00 quant_4x4
0.00 0.00 0.00 645825 0.00 0.00 x264_pixel_sad_x3_16x16
0.00 0.00 0.00 614473 0.00 0.00 sub8x8_dct
0.00 0.00 0.00 614400 0.00 0.00 prefetch_fenc_null
0.00 0.00 0.00 614400 0.00 0.00 x264_8_copy_column8
0.00 0.00 0.00 574285 0.00 0.00 mc_luma
0.00 0.00 0.00 483080 0.00 0.00 quant_2x2_dc
0.00 0.00 0.00 461056 0.00 0.00 mc_copy_w8
0.00 0.00 0.00 455044 0.00 0.00 mb_mc_0xywh
0.00 0.00 0.00 447818 0.00 0.00 predict_8x8_filter_c
0.00 0.00 0.00 435756 0.00 0.00 x264_8_predict_4x4_dc_c
0.00 0.00 0.00 410093 0.00 0.00 x264_8_predict_4x4_v_c
0.00 0.00 0.00 405454 0.00 0.00 zigzag_scan_8x8_frame
0.00 0.00 0.00 403302 0.00 0.00 x264_8_predict_8x8c_v_c
0.00 0.00 0.00 400409 0.00 0.00 mc_copy_w16
0.00 0.00 0.00 394223 0.00 0.00 x264_8_macroblock_encode
0.00 0.00 0.00 389273 0.00 0.00 intra_satd_x3_4x4
0.00 0.00 0.00 388246 0.00 0.00 predict_8x8_ddr_c
0.00 0.00 0.00 378852 0.00 0.00 cabac_mvd
0.00 0.00 0.00 377049 0.00 0.00 cabac_ref_p
0.00 0.00 0.00 370880 0.00 0.00 mbtree_propagate_cost
0.00 0.00 0.00 370880 0.00 0.00 mbtree_propagate_list
0.00 0.00 0.00 366469 0.00 0.00 predict_8x8_hu_c
0.00 0.00 0.00 360731 0.00 0.00 x264_8_mb_predict_mv_16x16
0.00 0.00 0.00 360006 0.00 0.00 predict_8x8_hd_c
0.00 0.00 0.00 353254 0.00 0.00 predict_4x4_ddr_c
0.00 0.00 0.00 347479 0.00 0.00 predict_4x4_hu_c
0.00 0.00 0.00 347381 0.00 0.00 refine_subpel.constprop.0
0.00 0.00 0.00 347381 0.00 0.00 x264_8_me_refine_qpel_refdupe
0.00 0.00 0.00 342147 0.00 0.00 predict_4x4_hd_c
0.00 0.00 0.00 341212 0.00 0.00 sub8x8_dct_dc
0.00 0.00 0.00 327648 0.00 0.00 x264_8_quant_4x4_trellis
0.00 0.00 0.00 321729 0.00 0.00 x264_8_predict_8x8_dc_c
0.00 0.00 0.00 318240 0.00 0.00 mc_weight_w16
0.00 0.00 0.00 315740 0.00 0.00 analyse_update_cache
0.00 0.00 0.00 314951 0.00 0.00 x264_8_predict_8x8_h_c
0.00 0.00 0.00 311094 0.00 0.00 x264_pixel_hadamard_ac_16x16
0.00 0.00 0.00 311047 0.00 0.00 x264_8_mb_encode_chroma
0.00 0.00 0.00 307200 0.00 0.00 load_deinterleave_chroma_fenc
0.00 0.00 0.00 307200 0.00 0.00 pixel_var_8x8
0.00 0.00 0.00 307200 0.00 0.00 x264_8_prefetch_fenc
0.00 0.00 0.00 305664 0.00 0.00 prefetch_ref_null
0.00 0.00 0.00 298750 0.00 0.00 x264_8_predict_8x8_v_c
0.00 0.00 0.00 292284 0.00 0.00 predict_8x8_ddl_c
0.00 0.00 0.00 291335 0.00 0.00 x264_8_mb_predict_mv_ref16x16
0.00 0.00 0.00 291160 0.00 0.00 predict_8x8_vl_c
0.00 0.00 0.00 290376 0.00 0.00 zigzag_scan_4x4_frame
0.00 0.00 0.00 287355 0.00 0.00 trellis_coef1_0
0.00 0.00 0.00 287140 0.00 0.00 predict_8x8_vr_c
0.00 0.00 0.00 285338 0.00 0.00 x264_8_predict_8x8c_h_c
0.00 0.00 0.00 285216 0.00 0.00 x264_8_predict_8x8c_p_c
0.00 0.00 0.00 280248 0.00 0.00 x264_8_predict_8x8c_dc_c
0.00 0.00 0.00 279794 0.00 0.00 weight_cost_init_chroma
0.00 0.00 0.00 278411 0.00 0.00 coeff_last4
0.00 0.00 0.00 274892 0.00 0.00 intra_satd_x3_8x8c
0.00 0.00 0.00 274392 0.00 0.00 trellis_coef0_0
0.00 0.00 0.00 261672 0.00 0.00 coeff_last64
0.00 0.00 0.00 241445 0.00 0.00 pixel_var2_8x8
0.00 0.00 0.00 241445 0.00 0.00 x264_8_mb_mc
0.00 0.00 0.00 240623 0.00 0.00 rd_cost_mb
0.00 0.00 0.00 240623 0.00 0.00 x264_pixel_ssd_16x16
0.00 0.00 0.00 234912 0.00 0.00 x264_8_quant_8x8_trellis
0.00 0.00 0.00 234646 0.00 0.00 intra_sa8d_x3_8x8
0.00 0.00 0.00 232299 0.00 0.00 add8x8_idct8
0.00 0.00 0.00 232299 0.00 0.00 dequant_8x8
0.00 0.00 0.00 216522 0.00 0.00 add8x8_idct_dc
0.00 0.00 0.00 215168 0.00 0.00 dequant_4x4
0.00 0.00 0.00 202537 0.00 0.00 x264_8_cabac_block_residual_rd_c
0.00 0.00 0.00 187851 0.00 0.00 predict_4x4_vl_c
0.00 0.00 0.00 187708 0.00 0.00 predict_4x4_ddl_c
0.00 0.00 0.00 183990 0.00 0.00 predict_4x4_vr_c
0.00 0.00 0.00 181938 0.00 0.00 x264_pixel_satd_16x16.constprop.8
0.00 0.00 0.00 164156 0.00 0.00 x264_8_cabac_encode_terminal_c
0.00 0.00 0.00 161792 0.00 0.00 mc_weight_w8
0.00 0.00 0.00 159864 0.00 0.00 sub16x16_dct
0.00 0.00 0.00 158240 0.00 0.00 x264_8_cabac_encode_bypass_c
0.00 0.00 0.00 157184 0.00 0.00 pixel_avg_8x8
0.00 0.00 0.00 154200 0.00 0.00 x264_8_ratecontrol_mb_qp
0.00 0.00 0.00 153600 0.00 0.00 ac_energy_mb
0.00 0.00 0.00 153600 0.00 0.00 mb_analyse_init_qp
0.00 0.00 0.00 153600 0.00 0.00 pixel_var_16x16
0.00 0.00 0.00 153600 0.00 0.00 store_interleave_chroma
0.00 0.00 0.00 153600 0.00 0.00 x264_8_macroblock_analyse
0.00 0.00 0.00 153600 0.00 0.00 x264_8_macroblock_cache_load_progressive
0.00 0.00 0.00 153600 0.00 0.00 x264_8_macroblock_cache_save
0.00 0.00 0.00 153600 0.00 0.00 x264_8_macroblock_deblock_strength
0.00 0.00 0.00 153600 0.00 0.00 x264_8_ratecontrol_mb
0.00 0.00 0.00 152832 0.00 0.00 x264_8_cabac_mb_skip
0.00 0.00 0.00 152832 0.00 0.00 x264_8_mb_predict_mv_pskip
0.00 0.00 0.00 142021 0.00 0.00 add4x4_idct
0.00 0.00 0.00 134729 0.00 0.00 deblock_strength_c
0.00 0.00 0.00 118899 0.00 0.00 slicetype_frame_cost
0.00 0.00 0.00 118604 0.00 0.00 x264_pixel_satd_4x8
0.00 0.00 0.00 118170 0.00 0.00 x264_8_macroblock_probe_skip
0.00 0.00 0.00 116217 0.00 0.00 sub16x16_dct8
0.00 0.00 0.00 112400 0.00 0.00 x264_8_cabac_block_residual_c
0.00 0.00 0.00 94335 0.00 0.00 x264_pixel_satd_8x16
0.00 0.00 0.00 93644 0.00 0.00 x264_pixel_satd_16x8
0.00 0.00 0.00 90355 0.00 0.00 x264_8_quant_chroma_dc_trellis
0.00 0.00 0.00 86271 0.00 0.00 deblock_h_luma_c
0.00 0.00 0.00 85452 0.00 0.00 x264_8_cabac_block_residual_8x8_rd_c
0.00 0.00 0.00 84012 0.00 0.00 x264_8_predict_16x16_h_c
0.00 0.00 0.00 81434 0.00 0.00 deblock_v_luma_c
0.00 0.00 0.00 79670 0.00 0.00 load_deinterleave_chroma_fdec
0.00 0.00 0.00 77960 0.00 0.00 x264_8_predict_16x16_v_c
0.00 0.00 0.00 76075 0.00 0.00 cabac_mvd
0.00 0.00 0.00 75742 0.00 0.00 cabac_ref_p
0.00 0.00 0.00 71193 0.00 0.00 decimate_score15
0.00 0.00 0.00 71024 0.00 0.00 mb_cache_mv_p8x8
0.00 0.00 0.00 70471 0.00 0.00 mb_init_fenc_cache
0.00 0.00 0.00 70424 0.00 0.00 intra_rd
0.00 0.00 0.00 70424 0.00 0.00 mb_analyse_intra
0.00 0.00 0.00 70394 0.00 0.00 x264_8_macroblock_write_cabac
0.00 0.00 0.00 69656 0.00 0.00 mb_analyse_p_rd
0.00 0.00 0.00 63288 0.00 0.00 mb_analyse_inter_b16x16
0.00 0.00 0.00 63207 0.00 0.00 deblock_h_chroma_c
0.00 0.00 0.00 61057 0.00 0.00 x264_8_predict_16x16_dc_c
0.00 0.00 0.00 60646 0.00 0.00 intra_satd_x3_16x16
0.00 0.00 0.00 60034 0.00 0.00 x264_pixel_sad_8x16
0.00 0.00 0.00 59451 0.00 0.00 coeff_last16
0.00 0.00 0.00 59119 0.00 0.00 x264_8_predict_16x16_p_c
0.00 0.00 0.00 58367 0.00 0.00 deblock_v_chroma_c
0.00 0.00 0.00 57668 0.00 0.00 x264_pixel_sad_16x8
0.00 0.00 0.00 51463 0.00 0.00 x264_pixel_sad_x4_16x8
0.00 0.00 0.00 50867 0.00 0.00 x264_pixel_sad_x4_8x16
0.00 0.00 0.00 46354 0.00 0.00 slicetype_path_cost
0.00 0.00 0.00 38187 0.00 0.00 decimate_score64
0.00 0.00 0.00 37148 0.00 0.00 coeff_last15
0.00 0.00 0.00 35968 0.00 0.00 x264_pixel_sad_x3_16x8
0.00 0.00 0.00 35357 0.00 0.00 x264_pixel_sad_x3_8x16
0.00 0.00 0.00 34636 0.00 0.00 dct4x4dc
0.00 0.00 0.00 34636 0.00 0.00 quant_4x4_dc
0.00 0.00 0.00 29030 0.00 0.00 deblock_h_chroma_intra_c
0.00 0.00 0.00 29030 0.00 0.00 deblock_h_luma_intra_c
0.00 0.00 0.00 24556 0.00 0.00 dequant_4x4_dc
0.00 0.00 0.00 24556 0.00 0.00 idct4x4dc
0.00 0.00 0.00 24113 0.00 0.00 deblock_v_chroma_intra_c
0.00 0.00 0.00 24113 0.00 0.00 deblock_v_luma_intra_c
0.00 0.00 0.00 23465 0.00 0.00 add16x16_idct_dc
0.00 0.00 0.00 23398 0.00 0.00 decimate_score16
0.00 0.00 0.00 23180 0.00 0.00 macroblock_tree_propagate
0.00 0.00 0.00 22715 0.00 0.00 trellis_dc_shortcut
0.00 0.00 0.00 17796 0.00 0.00 optimize_chroma_2x2_dc
0.00 0.00 0.00 13590 0.00 0.00 predict_8x8c_dc_left_c
0.00 0.00 0.00 12792 0.00 0.00 predict_8x8_dc_left_c
0.00 0.00 0.00 11156 0.00 0.00 x264_8_quant_luma_dc_trellis
0.00 0.00 0.00 10200 0.00 0.00 fdec_filter_row
0.00 0.00 0.00 9600 0.00 0.00 hpel_filter
0.00 0.00 0.00 9600 0.00 0.00 x264_8_frame_deblock_row
0.00 0.00 0.00 9600 0.00 0.00 x264_8_frame_expand_border
0.00 0.00 0.00 9600 0.00 0.00 x264_8_frame_expand_border_filtered
0.00 0.00 0.00 9600 0.00 0.00 x264_8_frame_filter
0.00 0.00 0.00 9134 0.00 0.00 predict_8x8c_dc_top_c
0.00 0.00 0.00 7538 0.00 0.00 predict_8x8_dc_top_c
0.00 0.00 0.00 7481 0.00 0.00 predict_4x4_dc_top_c
0.00 0.00 0.00 6755 0.00 0.00 predict_4x4_dc_left_c
0.00 0.00 0.00 6231 0.00 0.00 ssd_mb
0.00 0.00 0.00 5921 0.00 0.00 x264_8_cabac_encode_ue_bypass
0.00 0.00 0.00 5239 0.00 0.00 predict_16x16_dc_left_c
0.00 0.00 0.00 4380 0.00 0.00 predict_16x16_dc_top_c
0.00 0.00 0.00 4188 0.00 0.00 bs_write_ue_big
0.00 0.00 0.00 2401 0.00 0.00 scenecut_internal
0.00 0.00 0.00 2387 0.00 0.00 x264_8_frame_shift
0.00 0.00 0.00 1795 0.00 0.00 x264_8_frame_push_unused
0.00 0.00 0.00 1794 0.00 0.00 x264_8_weights_analyse
0.00 0.00 0.00 1789 0.00 0.00 weight_cache
0.00 0.00 0.00 1200 0.00 0.00 x264_8_frame_pop_unused
0.00 0.00 0.00 1199 0.00 0.00 x264_8_frame_push
0.00 0.00 0.00 1154 0.00 0.00 x264_8_weight_scale_plane
0.00 0.00 0.00 1124 0.00 0.00 add16x16_idct
0.00 0.00 0.00 943 0.00 0.00 add8x8_idct
0.00 0.00 0.00 702 0.00 0.00 weight_cost_luma
0.00 0.00 0.00 640 0.00 0.00 x264_8_encoder_encode
0.00 0.00 0.00 640 0.00 0.00 x264_encoder_encode
0.00 0.00 0.00 617 0.00 0.00 x264_8_log
0.00 0.00 0.00 607 0.00 0.00 nal_end
0.00 0.00 0.00 607 0.00 0.00 nal_escape_c
0.00 0.00 0.00 607 0.00 0.00 x264_8_nal_encode
0.00 0.00 0.00 606 0.00 0.00 weight_cost_luma.constprop.28
0.00 0.00 0.00 603 0.00 0.00 x264_8_slicetype_analyse
0.00 0.00 0.00 600 0.00 0.00 clip_qscale
0.00 0.00 0.00 600 0.00 0.00 encoder_encapsulate_nals.constprop.11
0.00 0.00 0.00 600 0.00 0.00 frame_init_lowres_core
0.00 0.00 0.00 600 0.00 0.00 get_qscale
0.00 0.00 0.00 600 0.00 0.00 macroblock_tree
0.00 0.00 0.00 600 0.00 0.00 rate_estimate_qscale
0.00 0.00 0.00 600 0.00 0.00 slice_header_init
0.00 0.00 0.00 600 0.00 0.00 slice_write
0.00 0.00 0.00 600 0.00 0.00 slicetype_frame_cost_recalculate
0.00 0.00 0.00 600 0.00 0.00 x264_8_adaptive_quant_frame
0.00 0.00 0.00 600 0.00 0.00 x264_8_cabac_context_init
0.00 0.00 0.00 600 0.00 0.00 x264_8_cabac_encode_flush
0.00 0.00 0.00 600 0.00 0.00 x264_8_cabac_encode_init
0.00 0.00 0.00 600 0.00 0.00 x264_8_frame_copy_picture
0.00 0.00 0.00 600 0.00 0.00 x264_8_frame_expand_border_lowres
0.00 0.00 0.00 600 0.00 0.00 x264_8_frame_init_lowres
0.00 0.00 0.00 600 0.00 0.00 x264_8_lookahead_get_frames
0.00 0.00 0.00 600 0.00 0.00 x264_8_lookahead_put_frame
0.00 0.00 0.00 600 0.00 0.00 x264_8_macroblock_slice_init
0.00 0.00 0.00 600 0.00 0.00 x264_8_macroblock_thread_init
0.00 0.00 0.00 600 0.00 0.00 x264_8_noise_reduction_update
0.00 0.00 0.00 600 0.00 0.00 x264_8_plane_copy_c
0.00 0.00 0.00 600 0.00 0.00 x264_8_plane_copy_interleave_c
0.00 0.00 0.00 600 0.00 0.00 x264_8_ratecontrol_end
0.00 0.00 0.00 600 0.00 0.00 x264_8_ratecontrol_qp
0.00 0.00 0.00 600 0.00 0.00 x264_8_ratecontrol_start
0.00 0.00 0.00 600 0.00 0.00 x264_8_ratecontrol_zone_init
0.00 0.00 0.00 600 0.00 0.00 x264_8_rc_analyse_slice
0.00 0.00 0.00 600 0.00 0.00 x264_8_slicetype_decide
0.00 0.00 0.00 600 0.00 0.00 x264_8_sync_frame_list_push
0.00 0.00 0.00 594 0.00 0.00 x264_8_frame_pop_blank_unused
0.00 0.00 0.00 594 0.00 0.00 x264_8_frame_push_blank_unused
0.00 0.00 0.00 594 0.00 0.00 x264_8_frame_unshift
0.00 0.00 0.00 548 0.00 0.00 predict_8x8c_dc_128_c
0.00 0.00 0.00 508 0.00 0.00 predict_8x8_dc_128_c
0.00 0.00 0.00 262 0.00 0.00 predict_16x16_dc_128_c
0.00 0.00 0.00 219 0.00 0.00 x264_free
0.00 0.00 0.00 208 0.00 0.00 x264_malloc
0.00 0.00 0.00 47 0.00 0.00 frame_new
0.00 0.00 0.00 41 0.00 0.00 x264_8_encoder_delayed_frames
0.00 0.00 0.00 41 0.00 0.00 x264_encoder_delayed_frames
0.00 0.00 0.00 18 0.00 0.00 bs_write_ue_big
0.00 0.00 0.00 15 0.00 0.00 x264_log_default
0.00 0.00 0.00 12 0.00 0.00 predict_4x4_dc_128_c
0.00 0.00 0.00 8 0.00 0.00 x264_8_frame_pop
0.00 0.00 0.00 6 0.00 0.00 x264_8_validate_levels
0.00 0.00 0.00 5 0.00 0.00 x264_8_frame_delete
0.00 0.00 0.00 4 0.00 0.00 x264_8_frame_delete_list
0.00 0.00 0.00 3 0.00 0.00 x264_8_pps_write
0.00 0.00 0.00 3 0.00 0.00 x264_8_sps_write
0.00 0.00 0.00 3 0.00 0.00 x264_8_sync_frame_list_delete
0.00 0.00 0.00 3 0.00 0.00 x264_8_sync_frame_list_init
0.00 0.00 0.00 2 0.00 0.00 x264_8_sps_init
0.00 0.00 0.00 2 0.00 0.00 x264_reduce_fraction
0.00 0.00 0.00 2 0.00 0.00 x264_strdup
0.00 0.00 0.00 1 0.00 0.00 mbcmp_init
0.00 0.00 0.00 1 0.00 0.00 validate_parameters
0.00 0.00 0.00 1 0.00 0.00 x264_8_analyse_free_costs
0.00 0.00 0.00 1 0.00 0.00 x264_8_analyse_init_costs
0.00 0.00 0.00 1 0.00 0.00 x264_8_bitstream_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_cabac_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_cqm_delete
0.00 0.00 0.00 1 0.00 0.00 x264_8_cqm_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_dct_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_deblock_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_encoder_close
0.00 0.00 0.00 1 0.00 0.00 x264_8_encoder_open
0.00 0.00 0.00 1 0.00 0.00 x264_8_lookahead_delete
0.00 0.00 0.00 1 0.00 0.00 x264_8_lookahead_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_macroblock_cache_allocate
0.00 0.00 0.00 1 0.00 0.00 x264_8_macroblock_cache_free
0.00 0.00 0.00 1 0.00 0.00 x264_8_macroblock_thread_allocate
0.00 0.00 0.00 1 0.00 0.00 x264_8_macroblock_thread_free
0.00 0.00 0.00 1 0.00 0.00 x264_8_mc_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_pixel_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_pps_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_predict_16x16_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_predict_4x4_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_predict_8x16c_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_predict_8x8_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_predict_8x8c_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_quant_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_ratecontrol_delete
0.00 0.00 0.00 1 0.00 0.00 x264_8_ratecontrol_init_reconfigurable
0.00 0.00 0.00 1 0.00 0.00 x264_8_ratecontrol_new
0.00 0.00 0.00 1 0.00 0.00 x264_8_ratecontrol_summary
0.00 0.00 0.00 1 0.00 0.00 x264_8_rdo_init
0.00 0.00 0.00 1 0.00 0.00 x264_8_sei_version_write
0.00 0.00 0.00 1 0.00 0.00 x264_8_sei_write.constprop.7
0.00 0.00 0.00 1 0.00 0.00 x264_8_sps_init_scaling_list
0.00 0.00 0.00 1 0.00 0.00 x264_8_zigzag_init
0.00 0.00 0.00 1 0.00 0.00 x264_cpu_detect
0.00 0.00 0.00 1 0.00 0.00 x264_cpu_num_processors
0.00 0.00 0.00 1 0.00 0.00 x264_encoder_close
0.00 0.00 0.00 1 0.00 0.00 x264_encoder_open_161
0.00 0.00 0.00 1 0.00 0.00 x264_param2string
0.00 0.00 0.00 1 0.00 0.00 x264_param_apply_profile
0.00 0.00 0.00 1 0.00 0.00 x264_param_cleanup
0.00 0.00 0.00 1 0.00 0.00 x264_param_default
0.00 0.00 0.00 1 0.00 0.00 x264_param_default_preset
0.00 0.00 0.00 1 0.00 0.00 x264_picture_alloc
0.00 0.00 0.00 1 0.00 0.00 x264_picture_clean
% the percentage of the total running time of the
time program used by this function.
cumulative a running sum of the number of seconds accounted
seconds for by this function and those listed above it.
self the number of seconds accounted for by this
seconds function alone. This is the major sort for this
listing.
calls the number of times this function was invoked, if
this function is profiled, else blank.
self the average number of milliseconds spent in this
ms/call function per call, if this function is profiled,
else blank.
total the average number of milliseconds spent in this
ms/call function and its descendents per call, if this
function is profiled, else blank.
name the name of the function. This is the minor sort
for this listing. The index shows the location of
the function in the gprof listing. If the index is
in parenthesis it shows where it would appear in
the gprof listing if it were to be printed.
Copyright (C) 2012-2018 Free Software Foundation, Inc.
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.
Call graph (explanation follows)
granularity: each sample hit covers 2 byte(s) no time propagated
index % time self children called name
[1] 0.0 0.00 0.00 119491+1202 <cycle 1 as a whole> [1]
0.00 0.00 118899 slicetype_frame_cost <cycle 1> [120]
0.00 0.00 1794 x264_8_weights_analyse <cycle 1> [193]
-----------------------------------------------
0.00 0.00 2905/30313651 refine_subpel.constprop.0 [56]
0.00 0.00 115084/30313651 refine_subpel [22]
0.00 0.00 374576/30313651 x264_pixel_satd_16x8 [126]
0.00 0.00 377340/30313651 x264_pixel_satd_8x16 [125]
0.00 0.00 13144264/30313651 x264_pixel_satd_16x16 [10]
0.00 0.00 16299482/30313651 x264_pixel_satd_8x8 [4]
[2] 0.0 0.00 0.00 30313651 x264_pixel_satd_8x4 [2]
-----------------------------------------------
0.00 0.00 310272/9727152 slicetype_frame_cost <cycle 1> [120]
0.00 0.00 1579607/9727152 refine_subpel.constprop.0 [56]
0.00 0.00 1993311/9727152 x264_8_me_search_ref [23]
0.00 0.00 5843962/9727152 refine_subpel [22]
[3] 0.0 0.00 0.00 9727152 get_ref [3]
-----------------------------------------------
0.00 0.00 155136/8149741 weight_cost_luma.constprop.28 [207]
0.00 0.00 159896/8149741 mb_cache_mv_p8x8 [137]
0.00 0.00 161792/8149741 weight_cost_luma [200]
0.00 0.00 1654080/8149741 refine_subpel.constprop.0 [56]
0.00 0.00 1687824/8149741 slicetype_frame_cost <cycle 1> [120]
0.00 0.00 4331013/8149741 refine_subpel [22]
[4] 0.0 0.00 0.00 8149741 x264_pixel_satd_8x8 [4]
0.00 0.00 16299482/30313651 x264_pixel_satd_8x4 [2]
-----------------------------------------------
0.00 0.00 237208/5858429 x264_pixel_satd_4x8 [121]
0.00 0.00 1344036/5858429 refine_subpel.constprop.0 [56]
0.00 0.00 1620226/5858429 mb_analyse_intra [140]
0.00 0.00 2656959/5858429 refine_subpel [22]
[5] 0.0 0.00 0.00 5858429 x264_pixel_satd_4x4 [5]
-----------------------------------------------
0.00 0.00 141868/5378572 x264_8_mb_encode_chroma [66]
0.00 0.00 168687/5378572 x264_8_macroblock_encode [44]
0.00 0.00 354033/5378572 mb_analyse_intra [140]
0.00 0.00 472605/5378572 x264_8_macroblock_probe_skip [122]
0.00 0.00 1843419/5378572 sub8x8_dct [31]
0.00 0.00 2397960/5378572 sub16x16_dct [103]
[6] 0.0 0.00 0.00 5378572 sub4x4_dct [6]
-----------------------------------------------
0.00 0.00 9/4118339 x264_8_macroblock_encode [44]
0.00 0.00 38076/4118339 x264_8_macroblock_probe_skip [122]
0.00 0.00 455044/4118339 mb_mc_0xywh [37]
0.00 0.00 956357/4118339 refine_subpel.constprop.0 [56]
0.00 0.00 2668853/4118339 refine_subpel [22]
[7] 0.0 0.00 0.00 4118339 mc_chroma [7]
-----------------------------------------------
0.00 0.00 1455504/3104856 x264_pixel_satd_16x16.constprop.8 [100]
0.00 0.00 1649352/3104856 intra_satd_x3_8x8c [83]
[8] 0.0 0.00 0.00 3104856 x264_pixel_satd_8x4.constprop.9 [8]
-----------------------------------------------
0.00 0.00 12095/3017143 cabac_ref_p [135]
0.00 0.00 152832/3017143 slice_write [216]
0.00 0.00 229571/3017143 cabac_mvd [134]
0.00 0.00 1200890/3017143 x264_8_macroblock_write_cabac [141]
0.00 0.00 1421755/3017143 x264_8_cabac_block_residual_c [124]
[9] 0.0 0.00 0.00 3017143 x264_8_cabac_encode_decision_c [9]
-----------------------------------------------
0.00 0.00 75455/1643033 mb_analyse_intra [140]
0.00 0.00 160822/1643033 refine_subpel.constprop.0 [56]
0.00 0.00 1406756/1643033 refine_subpel [22]
[10] 0.0 0.00 0.00 1643033 x264_pixel_satd_16x16 [10]
0.00 0.00 13144264/30313651 x264_pixel_satd_8x4 [2]
-----------------------------------------------
0.00 0.00 498450/1475506 refine_subpel [22]
0.00 0.00 977056/1475506 x264_8_me_search_ref [23]
[11] 0.0 0.00 0.00 1475506 x264_pixel_sad_x4_8x8 [11]
-----------------------------------------------
0.00 0.00 1348164/1348164 x264_8_me_search_ref [23]
[12] 0.0 0.00 0.00 1348164 x264_pixel_sad_16x16 [12]
-----------------------------------------------
0.00 0.00 1307120/1307120 x264_8_me_search_ref [23]
[13] 0.0 0.00 0.00 1307120 x264_pixel_sad_8x8 [13]
-----------------------------------------------
0.00 0.00 76075/1250842 cabac_mvd [134]
0.00 0.00 378852/1250842 cabac_mvd [47]
0.00 0.00 795915/1250842 x264_8_macroblock_analyse [111]
[14] 0.0 0.00 0.00 1250842 x264_8_mb_predict_mv [14]
-----------------------------------------------
0.00 0.00 1244376/1244376 x264_pixel_hadamard_ac_16x16 [65]
[15] 0.0 0.00 0.00 1244376 pixel_hadamard_ac [15]
-----------------------------------------------
0.00 0.00 106740/1173481 x264_8_mb_encode_chroma [66]
0.00 0.00 472605/1173481 x264_8_macroblock_probe_skip [122]
0.00 0.00 594136/1173481 x264_8_macroblock_encode [44]
[16] 0.0 0.00 0.00 1173481 quant_4x4x4 [16]
-----------------------------------------------
0.00 0.00 1167819/1167819 intra_satd_x3_4x4 [45]
[17] 0.0 0.00 0.00 1167819 x264_pixel_satd_4x4.constprop.12 [17]
-----------------------------------------------
0.00 0.00 1083114/1083114 x264_pixel_sa8d_8x8 [19]
[18] 0.0 0.00 0.00 1083114 sa8d_8x8 [18]
-----------------------------------------------
0.00 0.00 1083114/1083114 mb_analyse_intra [140]
[19] 0.0 0.00 0.00 1083114 x264_pixel_sa8d_8x8 [19]
0.00 0.00 1083114/1083114 sa8d_8x8 [18]
-----------------------------------------------
0.00 0.00 1009151/1009151 x264_8_me_search_ref [23]
[20] 0.0 0.00 0.00 1009151 x264_pixel_sad_x3_8x8 [20]
-----------------------------------------------
0.00 0.00 318016/900686 refine_subpel [22]
0.00 0.00 582670/900686 x264_8_me_search_ref [23]
[21] 0.0 0.00 0.00 900686 x264_pixel_sad_x4_16x16 [21]
-----------------------------------------------
0.00 0.00 813361/813361 x264_8_me_search_ref [23]
[22] 0.0 0.00 0.00 813361 refine_subpel [22]
0.00 0.00 5843962/9727152 get_ref [3]
0.00 0.00 4331013/8149741 x264_pixel_satd_8x8 [4]
0.00 0.00 2668853/4118339 mc_chroma [7]
0.00 0.00 2656959/5858429 x264_pixel_satd_4x4 [5]
0.00 0.00 1406756/1643033 x264_pixel_satd_16x16 [10]
0.00 0.00 498450/1475506 x264_pixel_sad_x4_8x8 [11]
0.00 0.00 318016/900686 x264_pixel_sad_x4_16x16 [21]
0.00 0.00 117075/118604 x264_pixel_satd_4x8 [121]
0.00 0.00 115084/30313651 x264_pixel_satd_8x4 [2]
0.00 0.00 93158/94335 x264_pixel_satd_8x16 [125]
0.00 0.00 91489/93644 x264_pixel_satd_16x8 [126]
0.00 0.00 17685/51463 x264_pixel_sad_x4_16x8 [152]
0.00 0.00 17649/50867 x264_pixel_sad_x4_8x16 [153]
-----------------------------------------------
0.00 0.00 4096/813361 slicetype_frame_cost <cycle 1> [120]
0.00 0.00 809265/813361 x264_8_macroblock_analyse [111]
[23] 0.0 0.00 0.00 813361 x264_8_me_search_ref [23]
0.00 0.00 1993311/9727152 get_ref [3]
0.00 0.00 1348164/1348164 x264_pixel_sad_16x16 [12]
0.00 0.00 1307120/1307120 x264_pixel_sad_8x8 [13]
0.00 0.00 1009151/1009151 x264_pixel_sad_x3_8x8 [20]
0.00 0.00 977056/1475506 x264_pixel_sad_x4_8x8 [11]
0.00 0.00 813361/813361 refine_subpel [22]
0.00 0.00 645825/645825 x264_pixel_sad_x3_16x16 [30]
0.00 0.00 582670/900686 x264_pixel_sad_x4_16x16 [21]
0.00 0.00 60034/60034 x264_pixel_sad_8x16 [147]
0.00 0.00 57668/57668 x264_pixel_sad_16x8 [151]
0.00 0.00 35968/35968 x264_pixel_sad_x3_16x8 [157]
0.00 0.00 35357/35357 x264_pixel_sad_x3_8x16 [158]
0.00 0.00 33778/51463 x264_pixel_sad_x4_16x8 [152]
0.00 0.00 33218/50867 x264_pixel_sad_x4_8x16 [153]
-----------------------------------------------
0.00 0.00 223871/705117 x264_8_macroblock_probe_skip [122]
0.00 0.00 481246/705117 rd_cost_mb [88]
[24] 0.0 0.00 0.00 705117 x264_pixel_ssd_8x8 [24]
-----------------------------------------------
0.00 0.00 703938/703938 intra_sa8d_x3_8x8 [91]
[25] 0.0 0.00 0.00 703938 sa8d_8x8.constprop.0 [25]
-----------------------------------------------
0.00 0.00 183891/697789 mb_analyse_intra [140]
0.00 0.00 234912/697789 x264_8_quant_8x8_trellis [90]
0.00 0.00 278986/697789 x264_8_macroblock_encode [44]
[26] 0.0 0.00 0.00 697789 quant_8x8 [26]
-----------------------------------------------
0.00 0.00 165247/697789 x264_8_macroblock_encode [44]
0.00 0.00 183891/697789 mb_analyse_intra [140]
0.00 0.00 348651/697789 sub16x16_dct8 [123]
[27] 0.0 0.00 0.00 697789 sub8x8_dct8 [27]
-----------------------------------------------
0.00 0.00 8628/688375 x264_8_macroblock_encode [44]
0.00 0.00 290474/688375 mb_analyse_intra [140]
0.00 0.00 389273/688375 intra_satd_x3_4x4 [45]
[28] 0.0 0.00 0.00 688375 x264_8_predict_4x4_h_c [28]
-----------------------------------------------
0.00 0.00 2967/684648 x264_8_macroblock_encode [44]
0.00 0.00 327648/684648 x264_8_quant_4x4_trellis [60]
0.00 0.00 354033/684648 mb_analyse_intra [140]
[29] 0.0 0.00 0.00 684648 quant_4x4 [29]
-----------------------------------------------
0.00 0.00 645825/645825 x264_8_me_search_ref [23]
[30] 0.0 0.00 0.00 645825 x264_pixel_sad_x3_16x16 [30]
-----------------------------------------------
0.00 0.00 141868/614473 x264_8_mb_encode_chroma [66]
0.00 0.00 472605/614473 x264_8_macroblock_probe_skip [122]
[31] 0.0 0.00 0.00 614473 sub8x8_dct [31]
0.00 0.00 1843419/5378572 sub4x4_dct [6]
-----------------------------------------------
0.00 0.00 153600/614400 x264_8_macroblock_cache_load_progressive [112]
0.00 0.00 153600/614400 x264_8_macroblock_cache_save [113]
0.00 0.00 153600/614400 x264_8_frame_deblock_row [177]
0.00 0.00 153600/614400 ac_energy_mb [107]
[32] 0.0 0.00 0.00 614400 prefetch_fenc_null [32]
-----------------------------------------------
0.00 0.00 614400/614400 x264_8_macroblock_cache_load_progressive [112]
[33] 0.0 0.00 0.00 614400 x264_8_copy_column8 [33]
-----------------------------------------------
0.00 0.00 47/574285 x264_8_macroblock_encode [44]
0.00 0.00 1024/574285 weight_cost_init_chroma [81]
0.00 0.00 118170/574285 x264_8_macroblock_probe_skip [122]
0.00 0.00 455044/574285 mb_mc_0xywh [37]
[34] 0.0 0.00 0.00 574285 mc_luma [34]
-----------------------------------------------
0.00 0.00 82430/483080 x264_8_macroblock_probe_skip [122]
0.00 0.00 90355/483080 x264_8_quant_chroma_dc_trellis [127]
0.00 0.00 310295/483080 x264_8_mb_encode_chroma [66]
[35] 0.0 0.00 0.00 483080 quant_2x2_dc [35]
-----------------------------------------------
0.00 0.00 461056/461056 slicetype_frame_cost <cycle 1> [120]
[36] 0.0 0.00 0.00 461056 mc_copy_w8 [36]
-----------------------------------------------
0.00 0.00 175032/455044 x264_8_macroblock_encode [44]
0.00 0.00 280012/455044 x264_8_mb_mc [87]
[37] 0.0 0.00 0.00 455044 mb_mc_0xywh [37]
0.00 0.00 455044/574285 mc_luma [34]
0.00 0.00 455044/4118339 mc_chroma [7]
-----------------------------------------------
0.00 0.00 49030/447818 x264_8_macroblock_encode [44]
0.00 0.00 153600/447818 slicetype_frame_cost <cycle 1> [120]
0.00 0.00 245188/447818 mb_analyse_intra [140]
[38] 0.0 0.00 0.00 447818 predict_8x8_filter_c [38]
-----------------------------------------------
0.00 0.00 66/435756 x264_8_macroblock_encode [44]
0.00 0.00 46417/435756 mb_analyse_intra [140]
0.00 0.00 389273/435756 intra_satd_x3_4x4 [45]
[39] 0.0 0.00 0.00 435756 x264_8_predict_4x4_dc_c [39]
-----------------------------------------------
0.00 0.00 20820/410093 mb_analyse_intra [140]
0.00 0.00 389273/410093 intra_satd_x3_4x4 [45]
[40] 0.0 0.00 0.00 410093 x264_8_predict_4x4_v_c [40]
-----------------------------------------------
0.00 0.00 99746/405454 x264_8_macroblock_encode [44]
0.00 0.00 135701/405454 x264_8_quant_8x8_trellis [90]
0.00 0.00 170007/405454 mb_analyse_intra [140]
[41] 0.0 0.00 0.00 405454 zigzag_scan_8x8_frame [41]
-----------------------------------------------
0.00 0.00 8602/403302 mb_cache_mv_p8x8 [137]
0.00 0.00 119808/403302 x264_8_macroblock_encode [44]
0.00 0.00 274892/403302 intra_satd_x3_8x8c [83]
[42] 0.0 0.00 0.00 403302 x264_8_predict_8x8c_v_c [42]
-----------------------------------------------
0.00 0.00 28801/400409 x264_8_macroblock_encode [44]
0.00 0.00 64408/400409 mb_analyse_intra [140]
0.00 0.00 153600/400409 x264_8_macroblock_cache_load_progressive [112]
0.00 0.00 153600/400409 x264_8_macroblock_cache_save [113]
[43] 0.0 0.00 0.00 400409 mc_copy_w16 [43]
-----------------------------------------------
0.00 0.00 153600/394223 slice_write [216]
0.00 0.00 240623/394223 rd_cost_mb [88]
[44] 0.0 0.00 0.00 394223 x264_8_macroblock_encode [44]
0.00 0.00 594136/1173481 quant_4x4x4 [16]
0.00 0.00 311047/311047 x264_8_mb_encode_chroma [66]
0.00 0.00 278986/697789 quant_8x8 [26]
0.00 0.00 241445/241445 x264_8_mb_mc [87]
0.00 0.00 234912/234912 x264_8_quant_8x8_trellis [90]
0.00 0.00 187136/327648 x264_8_quant_4x4_trellis [60]
0.00 0.00 175032/455044 mb_mc_0xywh [37]
0.00 0.00 168687/5378572 sub4x4_dct [6]
0.00 0.00 165247/697789 sub8x8_dct8 [27]
0.00 0.00 159864/159864 sub16x16_dct [103]
0.00 0.00 121578/290376 zigzag_scan_4x4_frame [75]
0.00 0.00 119808/403302 x264_8_predict_8x8c_v_c [42]
0.00 0.00 116217/116217 sub16x16_dct8 [123]
0.00 0.00 99746/405454 zigzag_scan_8x8_frame [41]
0.00 0.00 97022/215168 dequant_4x4 [95]
0.00 0.00 70521/71193 decimate_score15 [136]
0.00 0.00 62292/232299 dequant_8x8 [93]
0.00 0.00 62292/232299 add8x8_idct8 [92]
0.00 0.00 49030/447818 predict_8x8_filter_c [38]
0.00 0.00 38187/38187 decimate_score64 [155]
0.00 0.00 34636/34636 dct4x4dc [159]
0.00 0.00 29605/298750 x264_8_predict_8x8_v_c [71]
0.00 0.00 28801/400409 mc_copy_w16 [43]
0.00 0.00 24556/24556 idct4x4dc [164]
0.00 0.00 24556/24556 dequant_4x4_dc [163]
0.00 0.00 23480/34636 quant_4x4_dc [160]
0.00 0.00 23465/23465 add16x16_idct_dc [167]
0.00 0.00 18143/84012 x264_8_predict_16x16_h_c [130]
0.00 0.00 16306/321729 x264_8_predict_8x8_dc_c [61]
0.00 0.00 13013/77960 x264_8_predict_16x16_v_c [133]
0.00 0.00 11593/23398 decimate_score16 [168]
0.00 0.00 11156/11156 x264_8_quant_luma_dc_trellis [174]
0.00 0.00 10324/285216 x264_8_predict_8x8c_p_c [79]
0.00 0.00 8628/688375 x264_8_predict_4x4_h_c [28]
0.00 0.00 5356/280248 x264_8_predict_8x8c_dc_c [80]
0.00 0.00 4817/142021 add4x4_idct [118]
0.00 0.00 3144/13590 predict_8x8c_dc_left_c [172]
0.00 0.00 2967/684648 quant_4x4 [29]
0.00 0.00 2966/59119 x264_8_predict_16x16_p_c [149]
0.00 0.00 1508/314951 x264_8_predict_8x8_h_c [64]
0.00 0.00 1210/292284 predict_8x8_ddl_c [72]
0.00 0.00 1124/1124 add16x16_idct [198]
0.00 0.00 869/943 add8x8_idct [199]
0.00 0.00 532/9134 predict_8x8c_dc_top_c [181]
0.00 0.00 411/61057 x264_8_predict_16x16_dc_c [145]
0.00 0.00 318/7538 predict_8x8_dc_top_c [182]
0.00 0.00 126/7481 predict_4x4_dc_top_c [183]
0.00 0.00 79/4380 predict_16x16_dc_top_c [188]
0.00 0.00 66/435756 x264_8_predict_4x4_dc_c [39]
0.00 0.00 52/12792 predict_8x8_dc_left_c [173]
0.00 0.00 47/574285 mc_luma [34]
0.00 0.00 40/548 predict_8x8c_dc_128_c [242]
0.00 0.00 38/79670 load_deinterleave_chroma_fdec [132]
0.00 0.00 18/366469 predict_8x8_hu_c [51]
0.00 0.00 16/5239 predict_16x16_dc_left_c [187]
0.00 0.00 13/291160 predict_8x8_vl_c [74]
0.00 0.00 9/4118339 mc_chroma [7]
0.00 0.00 8/262 predict_16x16_dc_128_c [244]
0.00 0.00 2/12 predict_4x4_dc_128_c [252]
0.00 0.00 1/6755 predict_4x4_dc_left_c [184]
-----------------------------------------------
0.00 0.00 389273/389273 mb_analyse_intra [140]
[45] 0.0 0.00 0.00 389273 intra_satd_x3_4x4 [45]
0.00 0.00 1167819/1167819 x264_pixel_satd_4x4.constprop.12 [17]
0.00 0.00 389273/410093 x264_8_predict_4x4_v_c [40]
0.00 0.00 389273/688375 x264_8_predict_4x4_h_c [28]
0.00 0.00 389273/435756 x264_8_predict_4x4_dc_c [39]
-----------------------------------------------
0.00 0.00 153600/388246 slicetype_frame_cost <cycle 1> [120]
0.00 0.00 234646/388246 mb_analyse_intra [140]
[46] 0.0 0.00 0.00 388246 predict_8x8_ddr_c [46]
-----------------------------------------------
0.00 0.00 378852/378852 rd_cost_mb [88]
[47] 0.0 0.00 0.00 378852 cabac_mvd [47]
0.00 0.00 378852/1250842 x264_8_mb_predict_mv [14]
-----------------------------------------------
0.00 0.00 377049/377049 rd_cost_mb [88]
[48] 0.0 0.00 0.00 377049 cabac_ref_p [48]
-----------------------------------------------
0.00 0.00 370880/370880 macroblock_tree_propagate [169]
[49] 0.0 0.00 0.00 370880 mbtree_propagate_cost [49]
-----------------------------------------------
0.00 0.00 370880/370880 macroblock_tree_propagate [169]
[50] 0.0 0.00 0.00 370880 mbtree_propagate_list [50]
-----------------------------------------------
0.00 0.00 18/366469 x264_8_macroblock_encode [44]
0.00 0.00 153600/366469 slicetype_frame_cost <cycle 1> [120]
0.00 0.00 212851/366469 mb_analyse_intra [140]
[51] 0.0 0.00 0.00 366469 predict_8x8_hu_c [51]
-----------------------------------------------
0.00 0.00 360731/360731 x264_8_macroblock_analyse [111]
[52] 0.0 0.00 0.00 360731 x264_8_mb_predict_mv_16x16 [52]
-----------------------------------------------
0.00 0.00 153600/360006 slicetype_frame_cost <cycle 1> [120]
0.00 0.00 206406/360006 mb_analyse_intra [140]
[53] 0.0 0.00 0.00 360006 predict_8x8_hd_c [53]
-----------------------------------------------
0.00 0.00 353254/353254 mb_analyse_intra [140]
[54] 0.0 0.00 0.00 353254 predict_4x4_ddr_c [54]
-----------------------------------------------
0.00 0.00 347479/347479 mb_analyse_intra [140]
[55] 0.0 0.00 0.00 347479 predict_4x4_hu_c [55]
-----------------------------------------------
0.00 0.00 347381/347381 x264_8_macroblock_analyse [111]
[56] 0.0 0.00 0.00 347381 refine_subpel.constprop.0 [56]
0.00 0.00 1654080/8149741 x264_pixel_satd_8x8 [4]
0.00 0.00 1579607/9727152 get_ref [3]
0.00 0.00 1344036/5858429 x264_pixel_satd_4x4 [5]
0.00 0.00 956357/4118339 mc_chroma [7]
0.00 0.00 160822/1643033 x264_pixel_satd_16x16 [10]
0.00 0.00 2905/30313651 x264_pixel_satd_8x4 [2]
0.00 0.00 2155/93644 x264_pixel_satd_16x8 [126]
0.00 0.00 1529/118604 x264_pixel_satd_4x8 [121]
0.00 0.00 1177/94335 x264_pixel_satd_8x16 [125]
-----------------------------------------------
0.00 0.00 347381/347381 x264_8_macroblock_analyse [111]
[57] 0.0 0.00 0.00 347381 x264_8_me_refine_qpel_refdupe [57]
-----------------------------------------------
0.00 0.00 342147/342147 mb_analyse_intra [140]
[58] 0.0 0.00 0.00 342147 predict_4x4_hd_c [58]
-----------------------------------------------
0.00 0.00 82430/341212 x264_8_macroblock_probe_skip [122]
0.00 0.00 258782/341212 x264_8_mb_encode_chroma [66]
[59] 0.0 0.00 0.00 341212 sub8x8_dct_dc [59]
-----------------------------------------------
0.00 0.00 140512/327648 x264_8_mb_encode_chroma [66]
0.00 0.00 187136/327648 x264_8_macroblock_encode [44]
[60] 0.0 0.00 0.00 327648 x264_8_quant_4x4_trellis [60]
0.00 0.00 327648/684648 quant_4x4 [29]
0.00 0.00 31757/287355 trellis_coef1_0 [76]
0.00 0.00 31523/274392 trellis_coef0_0 [84]
0.00 0.00 29614/290376 zigzag_scan_4x4_frame [75]
0.00 0.00 24363/37148 coeff_last15 [156]
0.00 0.00 5251/59451 coeff_last16 [148]
0.00 0.00 2170/279794 weight_cost_init_chroma [81]
0.00 0.00 1856/22715 trellis_dc_shortcut [170]
0.00 0.00 706/6231 ssd_mb [185]
-----------------------------------------------
0.00 0.00 16306/321729 x264_8_macroblock_encode [44]
0.00 0.00 70777/321729 mb_analyse_intra [140]
0.00 0.00 234646/321729 intra_sa8d_x3_8x8 [91]
[61] 0.0 0.00 0.00 321729 x264_8_predict_8x8_dc_c [61]
-----------------------------------------------
0.00 0.00 318240/318240 x264_8_weight_scale_plane [197]
[62] 0.0 0.00 0.00 318240 mc_weight_w16 [62]
-----------------------------------------------
0.00 0.00 63288/315740 mb_analyse_inter_b16x16 [143]
0.00 0.00 98899/315740 mb_analyse_p_rd [142]
0.00 0.00 153553/315740 x264_8_macroblock_analyse [111]
[63] 0.0 0.00 0.00 315740 analyse_update_cache [63]
-----------------------------------------------
0.00 0.00 1508/314951 x264_8_macroblock_encode [44]
0.00 0.00 78797/314951 mb_analyse_intra [140]
0.00 0.00 234646/314951 intra_sa8d_x3_8x8 [91]
[64] 0.0 0.00 0.00 314951 x264_8_predict_8x8_h_c [64]
-----------------------------------------------
0.00 0.00 311094/311094 rd_cost_mb [88]
[65] 0.0 0.00 0.00 311094 x264_pixel_hadamard_ac_16x16 [65]
0.00 0.00 1244376/1244376 pixel_hadamard_ac [15]
-----------------------------------------------
0.00 0.00 311047/311047 x264_8_macroblock_encode [44]
[66] 0.0 0.00 0.00 311047 x264_8_mb_encode_chroma [66]
0.00 0.00 310295/483080 quant_2x2_dc [35]
0.00 0.00 258782/341212 sub8x8_dct_dc [59]
0.00 0.00 241445/241445 pixel_var2_8x8 [86]
0.00 0.00 216522/216522 add8x8_idct_dc [94]
0.00 0.00 141868/5378572 sub4x4_dct [6]
0.00 0.00 141868/614473 sub8x8_dct [31]
0.00 0.00 140512/327648 x264_8_quant_4x4_trellis [60]
0.00 0.00 106740/1173481 quant_4x4x4 [16]
0.00 0.00 90355/90355 x264_8_quant_chroma_dc_trellis [127]
0.00 0.00 17796/17796 optimize_chroma_2x2_dc [171]
0.00 0.00 705/290376 zigzag_scan_4x4_frame [75]
0.00 0.00 705/215168 dequant_4x4 [95]
0.00 0.00 557/71193 decimate_score15 [136]
0.00 0.00 74/142021 add4x4_idct [118]
0.00 0.00 74/943 add8x8_idct [199]
-----------------------------------------------
0.00 0.00 153600/307200 x264_8_macroblock_cache_load_progressive [112]
0.00 0.00 153600/307200 ac_energy_mb [107]
[67] 0.0 0.00 0.00 307200 load_deinterleave_chroma_fenc [67]
-----------------------------------------------
0.00 0.00 307200/307200 ac_energy_mb [107]
[68] 0.0 0.00 0.00 307200 pixel_var_8x8 [68]
-----------------------------------------------
0.00 0.00 153600/307200 x264_8_frame_deblock_row [177]
0.00 0.00 153600/307200 ac_energy_mb [107]
[69] 0.0 0.00 0.00 307200 x264_8_prefetch_fenc [69]
-----------------------------------------------
0.00 0.00 305664/305664 x264_8_macroblock_analyse [111]
[70] 0.0 0.00 0.00 305664 prefetch_ref_null [70]
-----------------------------------------------
0.00 0.00 29605/298750 x264_8_macroblock_encode [44]
0.00 0.00 34499/298750 mb_analyse_intra [140]
0.00 0.00 234646/298750 intra_sa8d_x3_8x8 [91]
[71] 0.0 0.00 0.00 298750 x264_8_predict_8x8_v_c [71]
-----------------------------------------------
0.00 0.00 1210/292284 x264_8_macroblock_encode [44]
0.00 0.00 137474/292284 mb_analyse_intra [140]
0.00 0.00 153600/292284 slicetype_frame_cost <cycle 1> [120]
[72] 0.0 0.00 0.00 292284 predict_8x8_ddl_c [72]
-----------------------------------------------
0.00 0.00 291335/291335 x264_8_macroblock_analyse [111]
[73] 0.0 0.00 0.00 291335 x264_8_mb_predict_mv_ref16x16 [73]
-----------------------------------------------
0.00 0.00 13/291160 x264_8_macroblock_encode [44]
0.00 0.00 137547/291160 mb_analyse_intra [140]
0.00 0.00 153600/291160 slicetype_frame_cost <cycle 1> [120]
[74] 0.0 0.00 0.00 291160 predict_8x8_vl_c [74]
-----------------------------------------------
0.00 0.00 705/290376 x264_8_mb_encode_chroma [66]
0.00 0.00 9118/290376 x264_8_quant_luma_dc_trellis [174]
0.00 0.00 11920/290376 x264_8_macroblock_probe_skip [122]
0.00 0.00 29614/290376 x264_8_quant_4x4_trellis [60]
0.00 0.00 117441/290376 mb_analyse_intra [140]
0.00 0.00 121578/290376 x264_8_macroblock_encode [44]
[75] 0.0 0.00 0.00 290376 zigzag_scan_4x4_frame [75]
-----------------------------------------------
0.00 0.00 17115/287355 x264_8_quant_luma_dc_trellis [174]
0.00 0.00 31757/287355 x264_8_quant_4x4_trellis [60]
0.00 0.00 65447/287355 x264_8_quant_chroma_dc_trellis [127]
0.00 0.00 173036/287355 x264_8_quant_8x8_trellis [90]
[76] 0.0 0.00 0.00 287355 trellis_coef1_0 [76]
-----------------------------------------------
0.00 0.00 133540/287140 mb_analyse_intra [140]
0.00 0.00 153600/287140 slicetype_frame_cost <cycle 1> [120]
[77] 0.0 0.00 0.00 287140 predict_8x8_vr_c [77]
-----------------------------------------------
0.00 0.00 10446/285338 mb_cache_mv_p8x8 [137]
0.00 0.00 274892/285338 intra_satd_x3_8x8c [83]
[78] 0.0 0.00 0.00 285338 x264_8_predict_8x8c_h_c [78]
-----------------------------------------------
0.00 0.00 10324/285216 x264_8_macroblock_encode [44]
0.00 0.00 121292/285216 mb_cache_mv_p8x8 [137]
0.00 0.00 153600/285216 slicetype_frame_cost <cycle 1> [120]
[79] 0.0 0.00 0.00 285216 x264_8_predict_8x8c_p_c [79]
-----------------------------------------------
0.00 0.00 5356/280248 x264_8_macroblock_encode [44]
0.00 0.00 274892/280248 intra_satd_x3_8x8c [83]
[80] 0.0 0.00 0.00 280248 x264_8_predict_8x8c_dc_c [80]
-----------------------------------------------
0.00 0.00 606/279794 x264_8_weights_analyse <cycle 1> [193]
0.00 0.00 2170/279794 x264_8_quant_4x4_trellis [60]
0.00 0.00 2816/279794 x264_8_quant_chroma_dc_trellis [127]
0.00 0.00 11960/279794 x264_8_quant_luma_dc_trellis [174]
0.00 0.00 45186/279794 x264_8_quant_8x8_trellis [90]
0.00 0.00 217056/279794 rd_cost_mb [88]
[81] 0.0 0.00 0.00 279794 weight_cost_init_chroma [81]
0.00 0.00 1024/574285 mc_luma [34]
-----------------------------------------------
0.00 0.00 58011/278411 x264_8_cabac_block_residual_c [124]
0.00 0.00 61860/278411 x264_8_quant_chroma_dc_trellis [127]
0.00 0.00 158540/278411 x264_8_cabac_block_residual_rd_c [96]
[82] 0.0 0.00 0.00 278411 coeff_last4 [82]
-----------------------------------------------
0.00 0.00 121292/274892 mb_cache_mv_p8x8 [137]
0.00 0.00 153600/274892 slicetype_frame_cost <cycle 1> [120]
[83] 0.0 0.00 0.00 274892 intra_satd_x3_8x8c [83]
0.00 0.00 1649352/3104856 x264_pixel_satd_8x4.constprop.9 [8]
0.00 0.00 274892/280248 x264_8_predict_8x8c_dc_c [80]
0.00 0.00 274892/285338 x264_8_predict_8x8c_h_c [78]
0.00 0.00 274892/403302 x264_8_predict_8x8c_v_c [42]
-----------------------------------------------
0.00 0.00 12984/274392 x264_8_quant_luma_dc_trellis [174]
0.00 0.00 31523/274392 x264_8_quant_4x4_trellis [60]
0.00 0.00 63069/274392 x264_8_quant_chroma_dc_trellis [127]
0.00 0.00 166816/274392 x264_8_quant_8x8_trellis [90]
[84] 0.0 0.00 0.00 274392 trellis_coef0_0 [84]
-----------------------------------------------
0.00 0.00 40519/261672 x264_8_cabac_block_residual_c [124]
0.00 0.00 85452/261672 x264_8_cabac_block_residual_8x8_rd_c [129]
0.00 0.00 135701/261672 x264_8_quant_8x8_trellis [90]
[85] 0.0 0.00 0.00 261672 coeff_last64 [85]
-----------------------------------------------
0.00 0.00 241445/241445 x264_8_mb_encode_chroma [66]
[86] 0.0 0.00 0.00 241445 pixel_var2_8x8 [86]
-----------------------------------------------
0.00 0.00 241445/241445 x264_8_macroblock_encode [44]
[87] 0.0 0.00 0.00 241445 x264_8_mb_mc [87]
0.00 0.00 280012/455044 mb_mc_0xywh [37]
-----------------------------------------------
0.00 0.00 26155/240623 x264_8_macroblock_analyse [111]
0.00 0.00 52281/240623 intra_rd [139]
0.00 0.00 63288/240623 mb_analyse_inter_b16x16 [143]
0.00 0.00 98899/240623 mb_analyse_p_rd [142]
[88] 0.0 0.00 0.00 240623 rd_cost_mb [88]
0.00 0.00 481246/705117 x264_pixel_ssd_8x8 [24]
0.00 0.00 378852/378852 cabac_mvd [47]
0.00 0.00 377049/377049 cabac_ref_p [48]
0.00 0.00 311094/311094 x264_pixel_hadamard_ac_16x16 [65]
0.00 0.00 240623/394223 x264_8_macroblock_encode [44]
0.00 0.00 240623/240623 x264_pixel_ssd_16x16 [89]
0.00 0.00 217056/279794 weight_cost_init_chroma [81]
0.00 0.00 202537/202537 x264_8_cabac_block_residual_rd_c [96]
0.00 0.00 85452/85452 x264_8_cabac_block_residual_8x8_rd_c [129]
-----------------------------------------------
0.00 0.00 240623/240623 rd_cost_mb [88]
[89] 0.0 0.00 0.00 240623 x264_pixel_ssd_16x16 [89]
-----------------------------------------------
0.00 0.00 234912/234912 x264_8_macroblock_encode [44]
[90] 0.0 0.00 0.00 234912 x264_8_quant_8x8_trellis [90]
0.00 0.00 234912/697789 quant_8x8 [26]
0.00 0.00 173036/287355 trellis_coef1_0 [76]
0.00 0.00 166816/274392 trellis_coef0_0 [84]
0.00 0.00 135701/261672 coeff_last64 [85]
0.00 0.00 135701/405454 zigzag_scan_8x8_frame [41]
0.00 0.00 45186/279794 weight_cost_init_chroma [81]
0.00 0.00 20859/22715 trellis_dc_shortcut [170]
0.00 0.00 1828/6231 ssd_mb [185]
-----------------------------------------------
0.00 0.00 234646/234646 mb_analyse_intra [140]
[91] 0.0 0.00 0.00 234646 intra_sa8d_x3_8x8 [91]
0.00 0.00 703938/703938 sa8d_8x8.constprop.0 [25]
0.00 0.00 234646/298750 x264_8_predict_8x8_v_c [71]
0.00 0.00 234646/314951 x264_8_predict_8x8_h_c [64]
0.00 0.00 234646/321729 x264_8_predict_8x8_dc_c [61]
-----------------------------------------------
0.00 0.00 62292/232299 x264_8_macroblock_encode [44]
0.00 0.00 170007/232299 mb_analyse_intra [140]
[92] 0.0 0.00 0.00 232299 add8x8_idct8 [92]
-----------------------------------------------
0.00 0.00 62292/232299 x264_8_macroblock_encode [44]
0.00 0.00 170007/232299 mb_analyse_intra [140]
[93] 0.0 0.00 0.00 232299 dequant_8x8 [93]
-----------------------------------------------
0.00 0.00 216522/216522 x264_8_mb_encode_chroma [66]
[94] 0.0 0.00 0.00 216522 add8x8_idct_dc [94]
-----------------------------------------------
0.00 0.00 705/215168 x264_8_mb_encode_chroma [66]
0.00 0.00 97022/215168 x264_8_macroblock_encode [44]
0.00 0.00 117441/215168 mb_analyse_intra [140]
[95] 0.0 0.00 0.00 215168 dequant_4x4 [95]
-----------------------------------------------
0.00 0.00 202537/202537 rd_cost_mb [88]
[96] 0.0 0.00 0.00 202537 x264_8_cabac_block_residual_rd_c [96]
0.00 0.00 158540/278411 coeff_last4 [82]
0.00 0.00 34156/59451 coeff_last16 [148]
0.00 0.00 9841/37148 coeff_last15 [156]
-----------------------------------------------
0.00 0.00 187851/187851 mb_analyse_intra [140]
[97] 0.0 0.00 0.00 187851 predict_4x4_vl_c [97]
-----------------------------------------------
0.00 0.00 187708/187708 mb_analyse_intra [140]
[98] 0.0 0.00 0.00 187708 predict_4x4_ddl_c [98]
-----------------------------------------------
0.00 0.00 183990/183990 mb_analyse_intra [140]
[99] 0.0 0.00 0.00 183990 predict_4x4_vr_c [99]
-----------------------------------------------
0.00 0.00 181938/181938 intra_satd_x3_16x16 [146]
[100] 0.0 0.00 0.00 181938 x264_pixel_satd_16x16.constprop.8 [100]
0.00 0.00 1455504/3104856 x264_pixel_satd_8x4.constprop.9 [8]
-----------------------------------------------
0.00 0.00 11156/164156 x264_8_macroblock_write_cabac [141]
0.00 0.00 153000/164156 slice_write [216]
[101] 0.0 0.00 0.00 164156 x264_8_cabac_encode_terminal_c [101]
-----------------------------------------------
0.00 0.00 161792/161792 weight_cost_luma [200]
[102] 0.0 0.00 0.00 161792 mc_weight_w8 [102]
-----------------------------------------------
0.00 0.00 159864/159864 x264_8_macroblock_encode [44]
[103] 0.0 0.00 0.00 159864 sub16x16_dct [103]
0.00 0.00 2397960/5378572 sub4x4_dct [6]
-----------------------------------------------
0.00 0.00 16233/158240 cabac_mvd [134]
0.00 0.00 142007/158240 x264_8_cabac_block_residual_c [124]
[104] 0.0 0.00 0.00 158240 x264_8_cabac_encode_bypass_c [104]
-----------------------------------------------
0.00 0.00 157184/157184 slicetype_frame_cost <cycle 1> [120]
[105] 0.0 0.00 0.00 157184 pixel_avg_8x8 [105]
-----------------------------------------------
0.00 0.00 600/154200 slice_write [216]
0.00 0.00 153600/154200 x264_8_macroblock_analyse [111]
[106] 0.0 0.00 0.00 154200 x264_8_ratecontrol_mb_qp [106]
-----------------------------------------------
0.00 0.00 153600/153600 x264_8_adaptive_quant_frame [218]
[107] 0.0 0.00 0.00 153600 ac_energy_mb [107]
0.00 0.00 307200/307200 pixel_var_8x8 [68]
0.00 0.00 153600/614400 prefetch_fenc_null [32]
0.00 0.00 153600/307200 x264_8_prefetch_fenc [69]
0.00 0.00 153600/153600 pixel_var_16x16 [109]
0.00 0.00 153600/307200 load_deinterleave_chroma_fenc [67]
-----------------------------------------------
0.00 0.00 153600/153600 x264_8_macroblock_analyse [111]
[108] 0.0 0.00 0.00 153600 mb_analyse_init_qp [108]
-----------------------------------------------
0.00 0.00 153600/153600 ac_energy_mb [107]
[109] 0.0 0.00 0.00 153600 pixel_var_16x16 [109]
-----------------------------------------------
0.00 0.00 153600/153600 x264_8_macroblock_cache_save [113]
[110] 0.0 0.00 0.00 153600 store_interleave_chroma [110]
-----------------------------------------------
0.00 0.00 153600/153600 slice_write [216]
[111] 0.0 0.00 0.00 153600 x264_8_macroblock_analyse [111]
0.00 0.00 809265/813361 x264_8_me_search_ref [23]
0.00 0.00 795915/1250842 x264_8_mb_predict_mv [14]
0.00 0.00 360731/360731 x264_8_mb_predict_mv_16x16 [52]
0.00 0.00 347381/347381 refine_subpel.constprop.0 [56]
0.00 0.00 347381/347381 x264_8_me_refine_qpel_refdupe [57]
0.00 0.00 305664/305664 prefetch_ref_null [70]
0.00 0.00 291335/291335 x264_8_mb_predict_mv_ref16x16 [73]
0.00 0.00 153600/154200 x264_8_ratecontrol_mb_qp [106]
0.00 0.00 153600/153600 mb_analyse_init_qp [108]
0.00 0.00 153553/315740 analyse_update_cache [63]
0.00 0.00 118170/118170 x264_8_macroblock_probe_skip [122]
0.00 0.00 70471/70471 mb_init_fenc_cache [138]
0.00 0.00 70424/70424 mb_analyse_intra [140]
0.00 0.00 70424/70424 intra_rd [139]
0.00 0.00 69656/69656 mb_analyse_p_rd [142]