Andreas Rheinhardt
a064d34a32
avcodec/mpegvideoenc: Add MPVEncContext
...
Many of the fields of MpegEncContext (which is also used by decoders)
are actually only used by encoders. Therefore this commit adds
a new encoder-only structure and moves all of the encoder-only
fields to it except for those which require more explicit
synchronisation between the main slice context and the other
slice contexts. This synchronisation is currently mainly provided
by ff_update_thread_context() which simply copies most of
the main slice context over the other slice contexts. Fields
which are moved to the new MPVEncContext no longer participate
in this (which is desired, because it is horrible and for the
fields b) below wasteful) which means that some fields can only
be moved when explicit synchronisation code is added in later commits.
More explicitly, this commit moves the following fields:
a) Fields not copied by ff_update_duplicate_context():
dct_error_sum and dct_count; the former does not need synchronisation,
the latter is synchronised in merge_context_after_encode().
b) Fields which do not change after initialisation (these fields
could also be put into MPVMainEncContext at the cost of
an indirection to access them): lambda_table, adaptive_quant,
{luma,chroma}_elim_threshold, new_pic, fdsp, mpvencdsp, pdsp,
{p,b_forw,b_back,b_bidir_forw,b_bidir_back,b_direct,b_field}_mv_table,
[pb]_field_select_table, mb_{type,var,mean}, mc_mb_var, {min,max}_qcoeff,
{inter,intra}_quant_bias, ac_esc_length, the *_vlc_length fields,
the q_{intra,inter,chroma_intra}_matrix{,16}, dct_offset, mb_info,
mjpeg_ctx, rtp_mode, rtp_payload_size, encode_mb, all function
pointers, mpv_flags, quantizer_noise_shaping,
frame_reconstruction_bitfield, error_rate and intra_penalty.
c) Fields which are already (re)set explicitly: The PutBitContexts
pb, tex_pb, pb2; dquant, skipdct, encoding_error, the statistics
fields {mv,i_tex,p_tex,misc,last}_bits and i_count; last_mv_dir,
esc_pos (reset when writing the header).
d) Fields which are only used by encoders not supporting slice
threading for which synchronisation doesn't matter: esc3_level_length
and the remaining mb_info fields.
e) coded_score: This field is only really used when FF_MPV_FLAG_CBP_RD
is set (which implies trellis) and even then it is only used for
non-intra blocks. For these blocks dct_quantize_trellis_c() either
sets coded_score[n] or returns a last_non_zero value of -1
in which case coded_score will be reset in encode_mb_internal().
Therefore no old values are ever used.
The MotionEstContext has not been moved yet.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com >
2025-03-26 04:08:33 +01:00
..
2025-03-10 00:57:23 +01:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2025-02-14 00:21:19 -03:00
2025-03-20 07:10:17 +01:00
2024-06-18 11:49:27 +02:00
2025-03-26 04:08:33 +01:00
2025-03-10 00:57:23 +01:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2025-03-13 02:20:05 +01:00
2025-03-17 08:51:23 +01:00
2025-03-18 13:45:20 +01:00
2024-12-04 16:43:07 +08:00
2025-03-26 04:08:33 +01:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-01-12 15:41:39 +01:00
2024-05-20 11:58:07 +02:00
2024-04-23 08:31:30 +02:00
2024-05-20 12:06:31 +02:00
2024-06-21 10:50:20 +02:00
2024-07-03 02:51:37 +02:00
2025-02-26 17:12:08 +01:00
2025-02-26 17:12:04 +01:00
2025-03-10 00:57:23 +01:00
2025-02-26 17:12:08 +01:00
2025-01-28 10:44:40 +02:00
2025-02-26 17:12:08 +01:00
2024-08-01 12:13:53 -03:00
2024-04-23 08:31:40 +02:00
2024-04-23 08:31:40 +02:00
2024-04-23 08:31:40 +02:00
2025-01-08 23:23:27 +01:00
2024-04-23 08:31:40 +02:00
2024-06-23 09:10:15 +02:00
2025-03-12 17:00:24 +01:00
2024-06-08 00:22:40 +02:00
2024-06-08 00:22:40 +02:00
2024-05-20 11:58:07 +02:00
2024-05-20 11:58:07 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-02-12 19:12:22 -03:00
2025-02-12 19:12:22 -03:00
2024-04-08 13:36:28 +03:00
2024-04-08 13:36:28 +03:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-05-20 14:11:03 +02:00
2024-05-20 14:11:25 +02:00
2024-05-20 14:11:25 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-05-20 12:06:31 +02:00
2024-05-20 12:06:31 +02:00
2024-05-20 12:06:31 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-08-14 18:21:01 +02:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-03-13 02:20:06 +01:00
2024-08-14 18:21:02 +02:00
2025-03-10 00:57:23 +01:00
2025-02-04 00:14:14 +01:00
2025-03-21 17:36:23 +01:00
2025-03-21 17:36:23 +01:00
2025-03-21 17:36:23 +01:00
2025-03-06 15:38:58 +01:00
2025-03-21 17:36:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-15 02:30:56 +01:00
2024-11-11 16:10:15 -03:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-04-06 09:26:30 +02:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-06-13 20:36:09 -03:00
2024-05-01 02:57:11 +02:00
2024-08-01 19:29:40 +03:00
2024-11-24 20:26:36 -03:00
2025-03-10 00:57:23 +01:00
2025-03-17 08:51:23 +01:00
2024-10-02 11:19:27 +03:00
2024-09-23 10:20:47 -03:00
2025-03-13 02:16:27 +01:00
2025-01-05 22:25:29 +01:00
2024-04-10 13:22:18 +02:00
2024-05-19 11:40:55 +02:00
2024-05-03 02:35:49 +02:00
2025-03-24 14:54:40 +08:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-01-15 15:05:37 +08:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2024-08-16 11:48:02 +02:00
2024-06-13 23:14:26 +02:00
2025-03-05 00:06:52 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2024-11-29 12:32:50 +08:00
2025-03-25 20:38:29 -03:00
2025-03-25 20:38:29 -03:00
2025-03-25 20:38:29 -03:00
2024-06-28 13:16:57 -03:00
2024-06-28 13:16:57 -03:00
2024-09-24 15:11:57 -03:00
2024-09-24 15:11:57 -03:00
2025-03-15 10:46:32 +08:00
2024-11-01 12:13:07 +08:00
2024-12-26 15:46:44 -03:00
2025-03-25 20:38:29 -03:00
2024-07-02 21:57:20 +02:00
2024-06-28 13:16:57 -03:00
2024-12-15 14:03:47 +01:00
2024-06-28 13:16:57 -03:00
2025-01-21 22:55:09 +01:00
2025-03-25 20:38:29 -03:00
2025-03-25 20:38:29 -03:00
2025-03-08 01:05:46 +01:00
2024-05-19 11:40:07 +02:00
2025-03-17 03:26:07 +01:00
2025-03-17 03:26:07 +01:00
2025-03-17 03:26:07 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-02-09 20:27:49 -06:00
2025-02-09 20:27:49 -06:00
2025-03-13 02:16:27 +01:00
2024-04-24 00:11:37 -03:00
2024-09-08 13:59:25 +02:00
2025-03-10 00:57:23 +01:00
2024-07-12 22:42:18 +02:00
2025-03-13 01:47:02 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 04:33:11 +01:00
2025-03-10 00:57:23 +01:00
2025-03-15 21:06:33 -03:00
2024-09-09 07:05:24 +02:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-17 04:33:11 +01:00
2024-05-19 11:40:07 +02:00
2025-03-13 02:16:27 +01:00
2024-07-29 14:00:48 -03:00
2024-09-06 13:59:28 +02:00
2025-03-10 00:57:23 +01:00
2024-05-31 14:18:33 +02:00
2024-05-19 11:40:07 +02:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2024-11-25 22:16:34 +01:00
2025-03-10 00:57:23 +01:00
2024-12-15 14:03:47 +01:00
2024-08-16 11:48:02 +02:00
2024-12-15 14:03:47 +01:00
2025-03-11 04:37:21 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-04-07 21:59:32 +02:00
2024-04-07 21:59:32 +02:00
2025-03-17 03:26:07 +01:00
2025-03-08 01:05:46 +01:00
2025-03-17 04:33:11 +01:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2025-03-17 04:33:11 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2024-10-02 17:28:30 +02:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2024-08-11 13:21:15 +02:00
2025-03-10 00:57:23 +01:00
2024-05-20 11:58:07 +02:00
2025-03-10 00:57:23 +01:00
2024-04-11 12:53:26 +02:00
2024-09-24 15:37:17 +02:00
2025-03-16 04:24:32 +01:00
2024-12-02 03:14:48 +01:00
2025-01-25 20:10:41 +01:00
2025-01-25 20:10:41 +01:00
2024-06-20 18:58:38 +02:00
2025-03-12 17:00:24 +01:00
2024-12-24 02:46:47 +01:00
2024-05-08 21:15:05 -03:00
2024-10-04 21:58:42 +08:00
2024-10-04 21:58:42 +08:00
2025-03-16 11:38:13 -03:00
2025-03-22 03:35:28 +01:00
2025-03-22 03:35:28 +01:00
2024-05-13 14:54:10 +02:00
2024-05-13 14:54:10 +02:00
2025-03-24 13:46:58 +01:00
2025-02-26 17:41:10 +08:00
2024-10-16 21:41:19 +02:00
2025-03-17 08:49:14 +01:00
2025-03-17 08:49:15 +01:00
2025-02-06 13:46:58 -03:00
2025-03-24 13:55:56 -03:00
2025-03-24 13:46:58 +01:00
2025-03-25 11:24:13 +01:00
2025-03-24 13:46:57 +01:00
2025-03-17 08:49:15 +01:00
2025-03-25 11:38:20 +01:00
2025-01-03 14:53:41 +09:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2024-07-12 22:49:33 +02:00
2025-03-10 00:57:23 +01:00
2024-05-24 09:23:00 -03:00
2025-02-27 15:30:12 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-06-12 11:47:49 +02:00
2025-03-26 04:08:33 +01:00
2025-03-26 03:31:26 +01:00
2024-05-13 03:40:17 +02:00
2024-05-19 11:40:07 +02:00
2024-05-19 11:40:07 +02:00
2024-05-20 12:06:31 +02:00
2024-09-13 19:39:58 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-06-13 20:36:09 -03:00
2025-03-17 03:26:07 +01:00
2025-01-01 21:33:46 +01:00
2025-03-10 00:57:23 +01:00
2024-07-12 22:42:23 +02:00
2025-03-07 15:19:02 +01:00
2024-06-20 18:58:39 +02:00
2025-03-07 15:19:02 +01:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2024-06-12 11:19:44 +02:00
2025-03-26 03:09:47 +01:00
2024-06-12 11:44:13 +02:00
2024-05-22 19:15:39 +03:00
2024-05-22 19:15:39 +03:00
2025-03-26 04:08:33 +01:00
2025-01-20 08:50:01 +00:00
2024-08-19 20:23:20 -03:00
2024-06-20 18:58:38 +02:00
2024-12-15 14:03:47 +01:00
2024-12-15 14:03:47 +01:00
2024-12-15 14:03:47 +01:00
2025-03-12 17:00:24 +01:00
2025-03-08 01:05:46 +01:00
2024-11-11 16:10:15 -03:00
2024-11-13 12:49:52 -03:00
2025-03-08 01:05:46 +01:00
2025-03-17 08:51:23 +01:00
2025-03-12 17:00:24 +01:00
2024-05-19 10:03:49 +03:00
2024-05-19 10:03:49 +03:00
2025-01-15 15:05:37 +08:00
2025-01-15 15:05:37 +08:00
2024-09-28 18:35:35 +02:00
2024-09-28 18:35:35 +02:00
2024-12-02 03:14:45 +01:00
2024-08-19 20:23:20 -03:00
2025-01-05 22:25:29 +01:00
2024-11-11 16:10:15 -03:00
2025-01-01 20:31:08 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2024-06-13 23:14:26 +02:00
2025-03-05 00:06:52 +01:00
2024-05-19 11:40:07 +02:00
2025-03-17 03:26:07 +01:00
2025-03-17 03:26:07 +01:00
2024-04-07 21:59:32 +02:00
2024-04-07 21:59:32 +02:00
2025-01-21 22:55:10 +01:00
2025-03-10 00:57:23 +01:00
2024-09-09 07:05:41 +02:00
2024-09-10 04:57:29 +02:00
2024-09-17 21:11:06 +02:00
2024-09-17 21:11:06 +02:00
2025-02-09 20:27:49 -06:00
2024-12-23 04:24:54 +09:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2024-06-13 23:14:26 +02:00
2025-03-05 00:06:52 +01:00
2024-07-12 22:42:28 +02:00
2024-06-30 11:37:25 +02:00
2024-06-30 11:37:25 +02:00
2024-12-04 04:23:49 +01:00
2025-03-10 00:57:23 +01:00
2024-09-24 15:37:19 +02:00
2024-06-12 11:47:49 +02:00
2024-12-15 14:03:47 +01:00
2025-03-16 04:24:32 +01:00
2025-03-16 04:24:32 +01:00
2025-02-27 15:30:12 +01:00
2025-02-27 15:30:12 +01:00
2025-03-08 01:05:46 +01:00
2025-03-26 04:08:33 +01:00
2024-09-19 10:01:00 -03:00
2025-03-10 00:57:23 +01:00
2024-09-24 15:37:15 +02:00
2024-04-21 09:43:17 +02:00
2025-03-22 03:35:28 +01:00
2024-08-10 09:22:44 -07:00
2025-01-10 14:56:03 -03:00
2024-10-27 10:26:00 -07:00
2024-11-08 08:30:07 -08:00
2024-11-08 08:30:07 -08:00
2024-12-07 15:41:30 -08:00
2024-08-10 09:22:51 -07:00
2025-03-10 00:57:23 +01:00
2025-01-30 13:46:26 -05:00
2025-01-30 13:46:26 -05:00
2024-05-19 11:39:35 +02:00
2024-05-19 11:40:07 +02:00
2024-12-15 14:03:47 +01:00
2025-02-27 15:39:15 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-02-08 10:59:05 +11:00
2024-09-08 13:59:29 +02:00
2025-03-17 04:33:11 +01:00
2025-03-17 04:33:11 +01:00
2025-03-10 00:57:23 +01:00
2025-01-05 22:25:29 +01:00
2024-11-24 20:26:50 -03:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-01-03 19:37:28 -05:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-04-06 09:55:57 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-24 14:54:46 +08:00
2025-03-10 00:57:23 +01:00
2025-03-17 04:33:11 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-12-26 13:41:28 -03:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-05-08 21:14:56 -03:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 04:51:57 +01:00
2024-07-12 22:42:38 +02:00
2024-05-31 13:36:02 -03:00
2025-03-17 04:33:11 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-03-18 23:06:55 +01:00
2025-03-05 00:24:54 +01:00
2025-03-21 04:30:09 +01:00
2025-03-16 04:24:32 +01:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2024-11-20 19:23:13 +08:00
2024-11-20 19:23:13 +08:00
2024-11-24 20:38:15 -03:00
2024-11-20 19:20:59 +08:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-10-09 16:30:37 +03:00
2024-10-09 16:30:37 +03:00
2025-03-17 04:33:11 +01:00
2025-03-17 04:33:11 +01:00
2024-04-19 13:18:04 +02:00
2025-03-10 00:57:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-07 15:19:03 +01:00
2025-03-07 15:19:03 +01:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2024-05-19 11:39:18 +02:00
2025-03-10 00:57:23 +01:00
2024-11-21 19:41:12 +11:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2025-03-17 04:33:11 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-06-08 00:22:35 +02:00
2025-03-04 12:58:30 +01:00
2024-06-20 18:58:38 +02:00
2025-03-07 15:19:02 +01:00
2025-03-07 15:19:02 +01:00
2025-03-04 12:58:30 +01:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2025-03-17 03:26:07 +01:00
2025-03-26 03:36:49 +01:00
2024-06-20 18:58:38 +02:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2024-06-20 18:58:39 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-12-15 14:03:47 +01:00
2024-12-15 14:03:47 +01:00
2024-06-20 18:58:38 +02:00
2025-03-07 15:19:02 +01:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2024-06-12 11:38:13 +02:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2024-06-12 11:47:49 +02:00
2025-03-26 04:08:33 +01:00
2024-09-01 13:42:30 +02:00
2024-09-01 13:42:30 +02:00
2024-07-16 18:43:15 +02:00
2024-06-20 18:58:39 +02:00
2025-03-26 03:39:01 +01:00
2025-03-26 03:39:01 +01:00
2025-03-26 03:39:25 +01:00
2025-03-26 03:39:25 +01:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-03-04 12:56:35 +01:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2024-08-14 18:21:00 +02:00
2024-05-19 22:14:39 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-08-28 16:27:55 +02:00
2025-03-10 00:57:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-02-02 20:01:56 +01:00
2025-02-02 20:01:56 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-02 18:43:53 +01:00
2025-03-02 18:43:53 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-09-23 10:07:37 -03:00
2025-03-13 02:16:27 +01:00
2025-03-10 00:57:23 +01:00
2024-12-15 14:05:33 +01:00
2024-12-15 14:05:33 +01:00
2025-03-10 00:57:23 +01:00
2024-08-05 23:17:46 +02:00
2025-02-06 13:48:47 -03:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-17 03:19:12 +01:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2024-05-19 11:40:55 +02:00
2024-08-01 18:44:01 +03:00
2025-03-05 00:06:52 +01:00
2024-07-12 22:42:46 +02:00
2025-02-09 19:06:42 -05:00
2025-03-10 00:57:23 +01:00
2025-03-22 03:35:28 +01:00
2025-03-22 03:35:28 +01:00
2024-09-06 13:59:28 +02:00
2024-06-08 00:22:35 +02:00
2024-09-23 10:05:34 -03:00
2025-03-17 08:51:23 +01:00
2025-02-27 15:30:12 +01:00
2025-02-27 15:30:12 +01:00
2025-03-10 04:51:57 +01:00
2025-03-20 07:10:17 +01:00
2024-05-19 11:40:07 +02:00
2025-03-12 17:00:24 +01:00
2025-03-26 03:13:53 +01:00
2025-03-12 17:00:24 +01:00
2025-03-11 04:37:21 +01:00
2025-03-11 04:37:21 +01:00
2025-03-17 03:26:07 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2024-04-19 13:18:04 +02:00
2024-12-15 14:03:47 +01:00
2024-12-15 14:03:47 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-12-15 14:03:47 +01:00
2024-09-04 12:14:58 +08:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-12-02 03:14:47 +01:00
2025-03-17 04:33:11 +01:00
2025-03-26 04:08:33 +01:00
2025-03-26 03:07:52 +01:00
2024-10-26 00:04:55 -03:00
2024-05-19 11:40:07 +02:00
2025-03-17 04:33:11 +01:00
2025-03-17 03:26:07 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-17 04:33:11 +01:00
2024-05-19 11:40:07 +02:00
2024-06-20 18:58:39 +02:00
2025-03-26 04:08:33 +01:00
2025-03-26 03:31:26 +01:00
2025-03-26 04:08:33 +01:00
2025-03-07 15:19:02 +01:00
2025-03-07 15:19:02 +01:00
2024-05-03 18:00:53 +03:00
2025-03-07 15:19:02 +01:00
2024-05-03 18:00:53 +03:00
2024-11-03 10:53:15 +11:00
2025-02-16 15:41:43 +01:00
2024-11-03 10:53:15 +11:00
2024-11-03 10:53:15 +11:00
2024-11-03 10:53:15 +11:00
2025-03-10 00:57:23 +01:00
2025-03-19 21:02:56 +01:00
2025-03-12 17:00:24 +01:00
2025-03-17 04:33:11 +01:00
2025-03-10 00:57:23 +01:00
2024-06-23 09:10:15 +02:00
2024-05-31 22:22:43 +03:00
2024-04-23 08:31:40 +02:00
2024-06-02 22:31:41 +02:00
2025-01-12 15:41:39 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2024-09-24 15:37:19 +02:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-02-27 15:30:12 +01:00
2025-02-27 15:30:12 +01:00
2025-02-27 15:30:12 +01:00
2024-06-02 18:34:44 +02:00
2024-06-02 18:34:44 +02:00
2025-03-17 04:33:11 +01:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2025-03-12 07:29:40 +01:00
2025-03-20 07:10:17 +01:00
2025-03-12 07:29:40 +01:00
2025-03-26 04:08:33 +01:00
2025-03-10 00:57:23 +01:00
2024-06-03 14:13:34 +02:00
2025-03-26 04:08:33 +01:00
2025-03-26 04:08:33 +01:00
2025-03-22 03:35:28 +01:00
2025-03-10 00:57:23 +01:00
2025-03-26 04:08:33 +01:00
2024-09-24 15:37:18 +02:00
2025-03-18 01:21:17 +01:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-03-17 04:33:11 +01:00
2024-10-15 10:37:44 +02:00
2025-02-10 11:00:07 -05:00
2024-04-19 13:07:48 +02:00
2024-07-15 01:59:40 +02:00
2025-03-10 00:57:23 +01:00
2025-03-02 18:43:53 +01:00
2024-05-19 11:40:07 +02:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-13 02:16:27 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2024-12-23 16:16:16 +08:00
2024-04-19 13:18:04 +02:00
2024-09-08 13:58:11 +02:00
2024-12-15 14:03:47 +01:00
2024-04-19 13:18:04 +02:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2024-10-12 11:21:14 -03:00
2025-03-10 00:57:23 +01:00
2024-10-12 11:21:14 -03:00
2025-03-10 00:57:23 +01:00
2024-10-12 11:21:14 -03:00
2025-03-10 00:57:23 +01:00
2025-03-17 08:51:23 +01:00
2024-11-01 12:13:07 +08:00
2024-11-01 12:13:07 +08:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-12-17 21:36:01 +01:00
2024-12-17 21:36:01 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-26 03:39:25 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2024-09-24 15:37:19 +02:00
2024-05-19 11:40:55 +02:00
2025-03-10 00:57:23 +01:00
2025-03-26 03:39:25 +01:00
2024-07-02 21:57:22 +02:00
2024-06-12 11:38:13 +02:00
2024-05-19 11:49:33 +02:00
2024-06-12 12:07:49 +02:00
2025-03-26 03:39:25 +01:00
2025-03-26 03:39:25 +01:00
2025-03-17 08:51:23 +01:00
2025-03-12 16:58:53 +01:00
2024-05-19 11:40:07 +02:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 04:33:11 +01:00
2025-01-05 22:25:29 +01:00
2025-02-09 20:27:49 -06:00
2025-02-12 21:09:52 -03:00
2024-07-30 18:41:51 +03:00
2024-07-30 18:41:51 +03:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-24 14:53:27 +08:00
2025-03-17 20:10:55 +08:00
2025-03-14 02:03:58 +01:00
2025-03-17 03:26:07 +01:00
2024-05-19 11:40:07 +02:00
2025-03-17 03:26:07 +01:00
2025-03-10 00:57:23 +01:00
2024-12-15 14:03:47 +01:00
2024-10-31 17:49:48 +11:00
2024-10-31 17:49:48 +11:00
2024-10-31 17:49:48 +11:00
2025-03-17 08:51:23 +01:00
2024-04-19 13:18:04 +02:00
2024-05-29 16:57:02 +03:00
2024-05-29 16:57:02 +03:00
2024-04-19 13:18:04 +02:00
2025-03-17 08:51:23 +01:00
2024-04-19 13:18:04 +02:00
2024-12-15 14:03:47 +01:00
2024-07-29 21:16:41 +03:00
2024-04-29 20:46:05 +03:00
2025-03-05 00:24:54 +01:00
2024-04-19 13:18:04 +02:00
2024-08-07 00:59:18 +02:00
2025-01-03 17:53:49 -05:00
2024-04-19 13:18:04 +02:00
2024-10-31 17:49:48 +11:00
2024-10-31 17:49:48 +11:00
2024-05-19 22:12:55 +02:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:49:11 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-12-23 04:25:09 +09:00
2024-12-23 04:25:09 +09:00
2025-03-17 08:51:23 +01:00
2024-10-06 01:21:44 +02:00
2025-03-17 08:51:23 +01:00
2025-03-17 08:51:23 +01:00
2024-10-06 01:21:44 +02:00
2024-12-23 04:25:09 +09:00
2024-12-23 04:25:09 +09:00
2024-08-15 20:50:24 +08:00
2024-06-25 19:32:17 +08:00
2025-03-10 00:57:23 +01:00
2024-12-15 14:03:47 +01:00
2024-04-19 13:18:04 +02:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-01-05 22:25:29 +01:00
2025-03-20 09:52:24 +01:00
2025-03-10 04:52:15 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 04:52:31 +01:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2025-03-12 17:00:24 +01:00
2024-06-12 11:26:51 +02:00
2024-06-12 11:26:51 +02:00
2025-03-26 03:39:25 +01:00
2025-03-26 04:08:33 +01:00
2024-05-19 11:40:07 +02:00
2024-09-24 15:37:20 +02:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2024-05-19 11:40:07 +02:00
2024-07-12 22:42:14 +02:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2024-05-19 11:40:07 +02:00
2024-05-19 11:40:43 +02:00
2024-05-19 11:40:07 +02:00
2025-03-10 00:57:23 +01:00
2025-03-10 00:57:23 +01:00