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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
|
<pre>Internet Engineering Task Force (IETF) X. Zhu
Request for Comments: 8593 S. Mena
Category: Informational Cisco Systems
ISSN: 2070-1721 Z. Sarker
Ericsson AB
May 2019
<span class="h1">Video Traffic Models for RTP Congestion Control Evaluations</span>
Abstract
This document describes two reference video traffic models for
evaluating RTP congestion control algorithms. The first model
statistically characterizes the behavior of a live video encoder in
response to changing requests on the target video rate. The second
model is trace-driven and emulates the output of actual encoded video
frame sizes from a high-resolution test sequence. Both models are
designed to strike a balance between simplicity, repeatability, and
authenticity in modeling the interactions between a live video
traffic source and the congestion control module. Finally, the
document describes how both approaches can be combined into a hybrid
model.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for informational purposes.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Not all documents
approved by the IESG are candidates for any level of Internet
Standard; see <a href="./rfc7841#section-2">Section 2 of RFC 7841</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="https://www.rfc-editor.org/info/rfc8593">https://www.rfc-editor.org/info/rfc8593</a>.
<span class="grey">Zhu, et al. Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
Copyright Notice
Copyright (c) 2019 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-2">2</a>. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-3">3</a>. Desired Behavior of a Synthetic Video Traffic Model . . . . . <a href="#page-4">4</a>
4. Interactions between Synthetic Video Traffic Source and
Other Components at the Sender . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-5">5</a>. A Statistical Reference Model . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-5.1">5.1</a>. Time-Damped Response to Target-Rate Update . . . . . . . <a href="#page-9">9</a>
5.2. Temporary Burst and Oscillation during the Transient
Period . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-5.3">5.3</a>. Output-Rate Fluctuation at Steady State . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-5.4">5.4</a>. Rate Range Limit Imposed by Video Content . . . . . . . . <a href="#page-10">10</a>
<a href="#section-6">6</a>. A Trace-Driven Model . . . . . . . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-6.1">6.1</a>. Choosing the Video Sequence and Generating the Traces . . <a href="#page-11">11</a>
<a href="#section-6.2">6.2</a>. Using the Traces in the Synthetic Codec . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-6.2.1">6.2.1</a>. Main Algorithm . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-6.2.2">6.2.2</a>. Notes to the Main Algorithm . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-6.3">6.3</a>. Varying Frame Rate and Resolution . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-7">7</a>. Combining the Two Models . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-8">8</a>. Reference Implementation . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-9">9</a>. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-10">10</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-11">11</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-11.1">11.1</a>. Normative References . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-11.2">11.2</a>. Informative References . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<span class="grey">Zhu, et al. Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
When evaluating candidate congestion control algorithms designed for
real-time interactive media, it is important to account for the
characteristics of traffic patterns generated from a live video
encoder. Unlike synthetic traffic sources that can conform perfectly
to the rate-changing requests from the congestion control module, a
live video encoder can be sluggish in reacting to such changes. The
output rate of a live video encoder also typically deviates from the
target rate due to uncertainties in the encoder rate-control process.
Consequently, end-to-end delay and loss performance of a real-time
media flow can be further impacted by rate variations introduced by
the live encoder.
On the other hand, evaluation results of a candidate RTP congestion
control algorithm should mostly reflect the performance of the
congestion control module and somewhat decouple from peculiarities of
any specific video codec. It is also desirable that evaluation tests
are repeatable and easily duplicated across different candidate
algorithms.
One way to strike a balance between the above considerations is to
evaluate congestion control algorithms using a synthetic video
traffic source model that captures key characteristics of the
behavior of a live video encoder. The synthetic traffic model should
also contain tunable parameters so that it can be flexibly adjusted
to reflect the wide variations in real-world live video encoder
behaviors. To this end, this document presents two reference models.
The first is based on statistical modeling. The second is driven by
frame size and interval traces recorded from a real-world encoder.
This document also discusses the pros and cons of each approach, as
well as how both approaches can be combined into a hybrid model.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in
<a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a> [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>] [<a href="./rfc8174" title=""Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"">RFC8174</a>] when, and only when, they appear in all
capitals, as shown here.
<span class="grey">Zhu, et al. Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Desired Behavior of a Synthetic Video Traffic Model</span>
A live video encoder employs encoder rate control to meet a target
rate by varying its encoding parameters, such as quantization step
size, frame rate, and picture resolution, based on its estimate of
the video content (e.g., motion and scene complexity). In practice,
however, several factors prevent the output video rate from perfectly
conforming to the input target rate.
Due to uncertainties in the captured video scene, the output rate
typically deviates from the specified target. In the presence of a
significant change in target rate, the encoder's output frame sizes
sometimes fluctuate for a short, transient period of time before the
output rate converges to the new target. Finally, while most of the
frames in a live session are encoded in predictive mode (i.e.,
P-frames in [<a href="#ref-H264" title=""Advanced video coding for generic audiovisual services"">H264</a>]), the encoder can occasionally generate a large
intra-coded frame (i.e., I-frame as defined in [<a href="#ref-H264" title=""Advanced video coding for generic audiovisual services"">H264</a>]) or a frame
partially containing intra-coded blocks in an attempt to recover from
losses, to re-sync with the receiver, or during the transient period
of responding to target rate or spatial resolution changes.
Hence, a synthetic video source should have the following
capabilities:
o To change bitrate. This includes the ability to change frame rate
and/or spatial resolution or to skip frames upon request.
o To fluctuate around the target bitrate specified by the congestion
control module.
o To show a delay in convergence to the target bitrate.
o To generate intra-coded or repair frames on demand.
While there exist many different approaches in developing a synthetic
video traffic model, it is desirable that the outcome follows a few
common characteristics, as outlined below.
o Low computational complexity: The model should be computationally
lightweight, otherwise, it defeats the whole purpose of serving as
a substitute for a live video encoder.
o Temporal pattern similarity: The individual traffic trace
instances generated by the model should mimic the temporal pattern
of those from a real video encoder.
<span class="grey">Zhu, et al. Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
o Statistical resemblance: The synthetic traffic source should match
the outcome of the real video encoder in terms of statistical
characteristics, such as the mean, variance, peak, and
autocorrelation coefficients of the bitrate. It is also important
that the statistical resemblance should hold across different time
scales ranging from tens of milliseconds to sub-seconds.
o A wide range of coverage: The model should be easily configurable
to cover a wide range of codec behaviors (e.g., with either fast
or slow reaction time in live encoder rate control) and video
content variations (e.g., ranging from high to low motion).
These distinct behavior features can be characterized via simple
statistical modeling or a trace-driven approach. Sections <a href="#section-5">5</a> and <a href="#section-6">6</a>
provide an example of each approach, respectively. <a href="#section-7">Section 7</a>
discusses how both models can be combined together.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Interactions between Synthetic Video Traffic Source and Other</span>
<span class="h2"> Components at the Sender</span>
Figure 1 depicts the interactions of the synthetic video traffic
source with other components at the sender, such as the application,
the congestion control module, the media packet transport module,
etc. Both reference models, as described later in Sections <a href="#section-5">5</a> and <a href="#section-6">6</a>,
follow the same set of interactions.
The synthetic video source dynamically generates a sequence of dummy
video frames with varying size and interval. These dummy frames are
processed by other modules in order to transmit the video stream over
the network. During the lifetime of a video transmission session,
the synthetic video source will typically be required to adapt its
encoding bitrate and sometimes the spatial resolution and frame rate.
In this model, the synthetic video source module has a group of
incoming and outgoing interface calls that allow for interaction with
other modules. The following are some of the possible incoming
interface calls, marked as (a) in Figure 1, that the synthetic video
traffic source may accept. The list is not exhaustive and can be
complemented by other interface calls if necessary.
o Target bitrate R_v: Target bitrate request measured in bits per
second (bps). Typically, the congestion control module calculates
the target bitrate and updates it dynamically over time.
Depending on the congestion control algorithm in use, the update
requests can either be periodic (e.g., once per second), or
on-demand (e.g., only when a drastic bandwidth change over the
network is observed).
<span class="grey">Zhu, et al. Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
o Target frame rate FPS: The instantaneous frame rate measured in
frames per second at a given time. This depends on the native
camera-capture frame rate as well as the target/preferred frame
rate configured by the application or user.
o Target frame resolution XY: The 2-dimensional vector indicating
the preferred frame resolution in pixels. Several factors govern
the resolution requested to the synthetic video source over time.
Examples of such factors include the capturing resolution of the
native camera and the display size of the destination screen. The
target frame resolution also depends on the current target bitrate
R_v, since it does not make sense to pair very low spatial
resolutions with very high bitrates, and vice-versa.
o Instant frame skipping: The request to skip the encoding of one or
several captured video frames, for instance, when a drastic
decrease in available network bandwidth is detected.
o On-demand generation of intra (I) frame: The request to encode
another I-frame to avoid further error propagation at the receiver
when severe packet losses are observed. This request typically
comes from the error control module. It can be initiated either
by the sender or by the receiver via Full Intra Request (FIR)
messages as defined in [<a href="./rfc5104" title=""Codec Control Messages in the RTP Audio-Visual Profile with Feedback (AVPF)"">RFC5104</a>].
An example of an outgoing interface call, marked as (b) in Figure 1,
is the rate range [R_min, R_max]. Here, R_min and R_max are meant to
capture the dynamic rate range the actual live video encoder is
capable of generating given the input video content. This typically
depends on the video content complexity and/or display type (e.g.,
higher R_max for video content with higher motion complexity or for
displays of higher resolution). Therefore, these values will not
change with R_v but may change over time if the content is changing.
<span class="grey">Zhu, et al. Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
+-------------+
| | dummy encoded
| Synthetic | video frames
| Video | -------------->
| Source |
| |
+--------+----+
/|\ |
| |
-------------------+ +-------------------->
interface from interface to
other modules (a) other modules (b)
Figure 1: Interaction between Synthetic Video Encoder
and Other Modules at the Sender
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. A Statistical Reference Model</span>
This section describes one simple statistical model of the live video
traffic source. Figure 2 summarizes the list of tunable parameters
in this statistical model. A more comprehensive survey of popular
methods for modeling the behavior of video traffic sources can be
found in [<a href="#ref-Tanwir2013">Tanwir2013</a>].
<span class="grey">Zhu, et al. Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
+===========+====================================+================+
| Notation | Parameter Name | Example Value |
+===========+====================================+================+
| R_v | Target bitrate request | 1 Mbps |
+-----------+------------------------------------+----------------+
| FPS | Target frame rate | 30 Hz |
+-----------+------------------------------------+----------------+
| tau_v | Encoder reaction latency | 0.2 s |
+-----------+------------------------------------+----------------+
| K_d | Burst duration of the transient | 8 frames |
| | period | |
+-----------+------------------------------------+----------------+
| K_B | Burst frame size during the | 13.5 KB* |
| | transient period | |
+-----------+------------------------------------+----------------+
| t0 | Reference frame interval 1/FPS | 33 ms |
+-----------+------------------------------------+----------------+
| B0 | Reference frame size R_v/8/FPS | 4.17 KB |
+-----------+------------------------------------+----------------+
| | Scaling parameter of the zero-mean | |
| | Laplacian distribution describing | |
| SCALE_t | deviations in normalized frame | 0.15 |
| | interval (t-t0)/t0 | |
+-----------+------------------------------------+----------------+
| | Scaling parameter of the zero-mean | |
| | Laplacian distribution describing | |
| SCALE_B | deviations in normalized frame | 0.15 |
| | size (B-B0)/B0 | |
+-----------+------------------------------------+----------------+
| R_min | Minimum rate supported by video | 150 kbps |
| | encoder type or content activity | |
+-----------+------------------------------------+----------------+
| R_max | Maximum rate supported by video | 1.5 Mbps |
| | encoder type or content activity | |
+===========+====================================+================+
* Example value of K_B for a video stream encoded at 720p and
30 frames per second using H.264/AVC encoder
Figure 2: List of Tunable Parameters in a Statistical Video Traffic
Source Model
<span class="grey">Zhu, et al. Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Time-Damped Response to Target-Rate Update</span>
While the congestion control module can update its target bitrate
request R_v at any time, the statistical model dictates that the
encoder will only react to such changes tau_v seconds after a
previous rate transition. In other words, when the encoder has
reacted to a rate-change request at time t, it will simply ignore all
subsequent rate-change requests until time t+tau_v.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Temporary Burst and Oscillation during the Transient Period</span>
The output bitrate R_o during the period [t, t+tau_v] is considered
to be in a transient state when reacting to abrupt changes in target
rate. Based on observations from video encoder output, the encoder
reaction to a new target bitrate request can be characterized by high
variations in output frame sizes. It is assumed in the model that
the overall average output bitrate R_o during this transient period
matches the target bitrate R_v. Consequently, the occasional burst
of large frames is followed by smaller-than-average encoded frames.
This temporary burst is characterized by two parameters:
o burst duration K_d: Number of frames in the burst event, and
o burst frame size K_B: Size of the initial burst frame, which is
typically significantly larger than the average frame size at
steady state.
It can be noted that these burst parameters can also be used to mimic
the insertion of a large on-demand I-frame in the presence of severe
packet losses. The values of K_d and K_B typically depend on the
type of video codec, spatial and temporal resolution of the encoded
stream, as well as the activity level in the video content.
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. Output-Rate Fluctuation at Steady State</span>
The output bitrate R_o during steady state is modeled as randomly
fluctuating around the target bitrate R_v. The output traffic can be
characterized as the combination of two random processes that denote
the frame interval t and output frame size B over time, which are the
two major sources of variations in the encoder output. For
simplicity, the deviations of t and B from their respective reference
levels are modeled as independent and identically distributed (i.i.d)
random variables following the Laplacian distribution [<a href="#ref-Papoulis" title=""Probability, Random Variables and Stochastic Processes"">Papoulis</a>].
More specifically:
<span class="grey">Zhu, et al. Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
o Fluctuations in frame interval: The intervals between adjacent
frames have been observed to fluctuate around the reference
interval of t0 = 1/FPS. Deviations in normalized frame interval
DELTA_t = (t-t0)/t0 can be modeled by a zero-mean Laplacian
distribution with scaling parameter SCALE_t. The value of SCALE_t
dictates the "width" of the Laplacian distribution and therefore
the amount of fluctuation in actual frame intervals (t) with
respect to the reference frame interval t0.
o Fluctuations in frame size: The output-encoded frame sizes also
tend to fluctuate around the reference frame size B0=R_v/8/FPS.
Likewise, deviations in the normalized frame size DELTA_B =
(B-B0)/B0 can be modeled by a zero-mean Laplacian distribution
with scaling parameter SCALE_B. The value of SCALE_B dictates the
"width" of this second Laplacian distribution and correspondingly
the amount of fluctuations in output frame sizes (B) with respect
to the reference target B0.
Both values of SCALE_t and SCALE_B can be obtained via parameter
fitting from empirical data captured for a given video encoder.
Example values are listed in Figure 2 based on empirical data
presented in [<a href="#ref-IETF-Interim">IETF-Interim</a>].
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. Rate Range Limit Imposed by Video Content</span>
The output bitrate R_o is further clipped within the dynamic range
[R_min, R_max], which in reality are dictated by scene and motion
complexity of the captured video content. In the proposed
statistical model, these parameters are specified by the application.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. A Trace-Driven Model</span>
The second approach for modeling a video traffic source is trace-
driven. This can be achieved by running an actual live video encoder
on a set of chosen raw video sequences and using the encoder's output
traces for constructing a synthetic video source. With this
approach, the recorded video traces naturally exhibit temporal
fluctuations around a given target bitrate request R_v from the
congestion control module.
The following list summarizes the main steps of this approach:
1. Choose one or more representative raw video sequences.
2. Encode the sequence(s) using an actual live video encoder.
Repeat the process for a number of bitrates. Keep only the
sequence of frame sizes for each bitrate.
<span class="grey">Zhu, et al. Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
3. Construct a data structure that contains the output of the
previous step. The data structure should allow for easy bitrate
lookup.
4. Upon a target bitrate request R_v from the controller, look up
the closest bitrates among those previously stored. Use the
frame-size sequences stored for those bitrates to approximate the
frame sizes to output.
5. The output of the synthetic video traffic source contains
"encoded" frames with dummy contents but with realistic sizes.
<a href="#section-6.1">Section 6.1</a> explains the first three steps (1-3), and <a href="#section-6.2">Section 6.2</a>
elaborates on the remaining two steps (4-5). Finally, <a href="#section-6.3">Section 6.3</a>
briefly discusses the possibility to extend the trace-driven model
for supporting time-varying frame rate and/or time-varying frame
resolution.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Choosing the Video Sequence and Generating the Traces</span>
The first step is a careful choice of a set of video sequences that
are representative of the target use cases for the video traffic
model. For the example use case of interactive video conferencing,
it is recommended to choose a sequence with content that resembles a
"talking head", e.g., from a news broadcast or recording of an actual
video conferencing call.
The length of the chosen video sequence is a tradeoff. If it is too
long, it will be difficult to manage the data structures containing
the traces. If it is too short, there will be an obvious periodic
pattern in the output frame sizes, leading to biased results when
evaluating congestion control performance. It has been empirically
determined that a sequence 2 to 4 minutes in length sufficiently
avoids the periodic pattern.
Given the chosen raw video sequence, denoted "S", one can use a live
encoder, e.g., some implementation of [<a href="#ref-H264" title=""Advanced video coding for generic audiovisual services"">H264</a>] or [<a href="#ref-H265" title=""High efficiency video coding"">H265</a>], to produce a
set of encoded sequences. As discussed in <a href="#section-3">Section 3</a>, the output
bitrate of the live encoder can be achieved by tuning three input
parameters: quantization step size, frame rate, and picture
resolution. In order to simplify the choice of these parameters for
a given target rate, one can typically assume a fixed frame rate
(e.g., 30 fps) and a fixed resolution (e.g., 720p) when configuring
the live encoder. See <a href="#section-6.3">Section 6.3</a> for a discussion on how to relax
these assumptions.
<span class="grey">Zhu, et al. Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
Following these simplifications, the chosen encoder can be configured
to start at a constant target bitrate, then vary the quantization
step size (internally via the video encoder rate controller) to meet
various externally specified target rates. It can be further assumed
the first frame is encoded as an I-frame and the rest are P-frames
(see, e.g., [<a href="#ref-H264" title=""Advanced video coding for generic audiovisual services"">H264</a>] for definitions of I-frames and P-frames). For
live encoding, the encoder rate-control algorithm typically does not
use knowledge of frames in the future when encoding a given frame.
Given the minimum and maximum bitrates at which the synthetic codec
is to operate (denoted as "R_min" and "R_max", see <a href="#section-4">Section 4</a>), the
entire range of target bitrates can be divided into n_s steps. This
leads to an encoding bitrate ladder of (n_s + 1) choices equally
spaced apart by the step length l = (R_max - R_min)/n_s. The
following simple algorithm is used to encode the raw video sequence.
r = R_min
while r <= R_max do
Traces[r] = encode_sequence(S, r, e)
r = r + l
The function encode_sequence takes as input parameters, respectively,
a raw video sequence (S), a constant target rate (r), and an encoder
rate-control algorithm (e); it returns a vector with the sizes of
frames in the order they were encoded. The output vector is stored
in a map structure called "Traces", whose keys are bitrates and whose
values are vectors of frame sizes.
The choice of a value for the number of bitrate steps n_s is
important, since it determines the number of vectors of frame sizes
stored in the map Traces. The minimum value one can choose for n_s
is 1; the maximum value depends on the amount of memory available for
holding the map Traces. A reasonable value for n_s is one that
results in steps of length l = 200 kbps. <a href="#section-6.2.2">Section 6.2.2</a> will discuss
further the choice of step length l.
Finally, note that, as mentioned in previous sections, R_min and
R_max may be modified after the initial sequences are encoded.
Henceforth, for notational clarity, we refer to the bitrate range of
the trace file as [Rf_min, Rf_max]. The algorithm described in
<a href="#section-6.2.1">Section 6.2.1</a> also covers the cases when the current target bitrate
is less than Rf_min or greater than Rf_max.
<span class="grey">Zhu, et al. Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Using the Traces in the Synthetic Codec</span>
The main idea behind the trace-driven synthetic codec is that it
mimics the rate-adaptation behavior of a real live codec upon dynamic
updates of the target bitrate request R_v by the congestion control
module. It does so by switching to a different frame-size vector
stored in the map Traces when needed.
<span class="h4"><a class="selflink" id="section-6.2.1" href="#section-6.2.1">6.2.1</a>. Main Algorithm</span>
The main algorithm for rate adaptation in the synthetic codec
maintains two variables: r_current and t_current.
o The variable r_current points to one of the keys of map Traces.
Upon a change in the value of R_v, typically because the
congestion controller detects that the network conditions have
changed, r_current is updated based on R_v as follows:
R_ref = min (Rf_max, max(Rf_min, R_v))
r_current = r
such that
(r in keys(Traces) and
r <= R_ref and
(not(exists) r' in keys(Traces) such that r <r'<= R_ref))
o The variable t_current is an index to the frame-size vector stored
in Traces[r_current]. It is updated every time a new frame is
due. It is assumed that all vectors stored in Traces have the
same size, denoted as "size_traces". The following equation
governs the update of t_current:
if t_current < SkipFrames then
t_current = t_current + 1
else
t_current = ((t_current + 1 - SkipFrames)
% (size_traces-SkipFrames)) + SkipFrames
where operator "%" denotes modulo, and SkipFrames is a predefined
constant that denotes the number of frames to be skipped at the
beginning of frame-size vectors after t_current has wrapped around.
The point of constant SkipFrames is avoiding the effect of
periodically sending a large I-frame followed by several smaller-
than-average P-frames. A typical value of SkipFrames is 20, although
it could be set to 0 if one is interested in studying the effect of
sending I-frames periodically.
<span class="grey">Zhu, et al. Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
The initial value of r_current is set to R_min, and the initial value
of t_current is set to 0.
When a new frame is due, its size can be calculated following one of
the three cases below:
a) Rf_min <= R_v < Rf_max: The output frame size is calculated via
linear interpolation of the frame sizes appearing in
Traces[r_current] and Traces[r_current + l]. The interpolation is
done as follows:
size_lo = Traces[r_current][t_current]
size_hi = Traces[r_current + l][t_current]
distance_lo = (R_v - r_current) / l
framesize = size_hi*distance_lo + size_lo*(1-distance_lo)
b) R_v < Rf_min: The output frame size is calculated via scaling
with respect to the lowest bitrate Rf_min in the trace file, as
follows:
w = R_v / Rf_min
framesize = max(fs_min, factor * Traces[Rf_min][t_current])
c) R_v >= Rf_max: The output frame size is calculated by scaling
with respect to the highest bitrate Rf_max in the trace file, as
follows:
w = R_v / Rf_max
framesize = min(fs_max, w * Traces[Rf_max][t_current])
In cases b) and c), floating-point arithmetic is used for computing
the scaling factor "w". The resulting value of the instantaneous
frame size (framesize) is further clipped within a reasonable range
between fs_min (e.g., 10 bytes) and fs_max (e.g., 1 MB).
<span class="h4"><a class="selflink" id="section-6.2.2" href="#section-6.2.2">6.2.2</a>. Notes to the Main Algorithm</span>
Note that the main algorithm as described above can be further
extended to mimic some additional typical behaviors of a live video
encoder. Two examples are given below:
o I-frames on demand: The synthetic codec can be extended to
simulate the sending of I-frames on demand, e.g., as a reaction to
losses. To implement this extension, the codec's incoming
interface (see (a) in Figure 1) is augmented with a new function
to request a new I-frame. Upon calling such function, t_current
is reset to 0.
<span class="grey">Zhu, et al. Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
o Variable step length l between R_min and R_max: In the main
algorithm, the step length l is fixed for ease of explanation.
However, if the range [R_min, R_max] is very wide, it is also
possible to define a set of intermediate encoding rates with
variable step length. The rationale behind this modification is
that the difference between 400 and 600 kbps as target bitrate is
much more significant than the difference between 4400 kbps and
4600 kbps. For example, one could define steps of length 200 kbps
under 1 Mbps, then steps of length 300 kbps between 1 Mbps and 2
Mbps, then 400 kbps between 2 Mbps and 3 Mbps, and so on.
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. Varying Frame Rate and Resolution</span>
The trace-driven synthetic codec model explained in this section is
relatively simple due to the choice of fixed frame rate and frame
resolution. The model can be extended further to accommodate
variable frame rate and/or variable spatial resolution.
When the encoded picture quality at a given bitrate is low, one can
potentially decrease either the frame rate (if the video sequence is
currently in low motion) or the spatial resolution in order to
improve quality of experience (QoE) in the overall encoded video. On
the other hand, if target bitrate increases to a point where there is
no longer a perceptible improvement in the picture quality of
individual frames, then one might afford to increase the spatial
resolution or the frame rate (useful if the video is currently in
high motion).
Many techniques have been proposed to choose over time the best
combination of encoder-quantization step size, frame rate, and
spatial resolution in order to maximize the quality of live video
codecs [<a href="#ref-Ozer2011" title=""Video Compression for Flash, Apple Devices and HTML5"">Ozer2011</a>] [<a href="#ref-Hu2012" title=""Optimization of Spatial, Temporal and Amplitude Resolution for Rate-Constrained Video Coding and Scalable Video Adaptation"">Hu2012</a>]. Future work may consider extending the
trace-driven codec to accommodate variable frame rate and/or
resolution.
From the perspective of congestion control, varying the spatial
resolution typically requires a new intra-coded frame to be
generated, thereby incurring a temporary burst in the output traffic
pattern. The impact of frame-rate change tends to be more subtle:
reducing frame rate from high to low leads to sparsely spaced larger
encoded packets instead of many densely spaced smaller packets. Such
difference in traffic profiles may still affect the performance of
congestion control, especially when outgoing packets are not paced by
the media transport module. Investigation of varying frame rate and
resolution are left for future work.
<span class="grey">Zhu, et al. Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Combining the Two Models</span>
It is worthwhile noting that the statistical and trace-driven models
each have their own advantages and drawbacks. Both models are fairly
simple to implement. It takes significantly greater effort to fit
the parameters of a statistical model to actual encoder output data.
In contrast, it is straightforward for a trace-driven model to obtain
encoded frame-size data. Once validated, the statistical model is
more flexible in mimicking a wide range of encoder/content behaviors
by simply varying the corresponding parameters in the model. In this
regard, a trace-driven model relies, by definition, on additional
data-collection efforts for accommodating new codecs or video
contents.
In general, the trace-driven model is more realistic for mimicking
the ongoing steady-state behavior of a video traffic source with
fluctuations around a constant target rate. In contrast, the
statistical model is more versatile for simulating the behavior of a
video stream in transient, such as when encountering sudden rate
changes. It is also possible to combine both methods into a hybrid
model. In this case, the steady-state behavior is driven by traces
during steady state and the transient-state behavior is driven by the
statistical model.
transient +---------------+
state | Generate next |
+------>| K_d transient |
+-----------------+ / | frames |
R_v | Compare against | / +---------------+
------>| previous |/
| target bitrate |\
+-----------------+ \ +---------------+
\ | Generate next |
+------>| frame from |
steady | trace |
state +---------------+
Figure 3: A Hybrid Video Traffic Model
As shown in Figure 3, the video traffic model operates in a transient
state if the requested target rate R_v is substantially different
from the previous target; otherwise, it operates in a steady state.
During the transient state, a total of K_d frames are generated by
the statistical model, resulting in one (1) big burst frame with size
K_B followed by K_d-1 smaller frames. When operating at steady
state, the video traffic model simply generates a frame according to
the trace-driven model given the target rate while modulating the
frame interval according to the distribution specified by the
<span class="grey">Zhu, et al. Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
statistical model. One example criterion for determining whether the
traffic model should operate in a transient state is whether the rate
change exceeds 10% of the previous target rate. Finally, as this
model follows transient-state behavior dictated by the statistical
model, upon a substantial rate change, the model will follow the
time-damping mechanism as defined in <a href="#section-5.1">Section 5.1</a>, which is governed
by parameter tau_v.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Reference Implementation</span>
The statistical, trace-driven, and hybrid models as described in this
document have been implemented as a stand-alone, platform-independent
synthetic traffic source module. It can be easily integrated into
network simulation platforms such as [<a href="#ref-ns-2" title=""The Network Simulator - ns-2"">ns-2</a>] and [<a href="#ref-ns-3" title=""NS-3 Network Simulator"">ns-3</a>], as well as
testbeds using a real network. The stand-alone traffic source module
is available as an open-source implementation at [<a href="#ref-Syncodecs">Syncodecs</a>].
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. IANA Considerations</span>
This document has no IANA actions.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Security Considerations</span>
The synthetic video traffic models as described in this document do
not impose any security threats. They are designed to mimic
realistic traffic patterns for evaluating candidate RTP-based
congestion control algorithms so as to ensure stable operations of
the network. It is RECOMMENDED that candidate algorithms be tested
using the video traffic models presented in this document before wide
deployment over the Internet. If the generated synthetic traffic
flows are sent over the Internet, they also need to be congestion
controlled.
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. References</span>
<span class="h3"><a class="selflink" id="section-11.1" href="#section-11.1">11.1</a>. Normative References</span>
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>,
DOI 10.17487/RFC2119, March 1997,
<<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>>.
[<a id="ref-RFC8174">RFC8174</a>] Leiba, B., "Ambiguity of Uppercase vs Lowercase in <a href="./rfc2119">RFC</a>
<a href="./rfc2119">2119</a> Key Words", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc8174">RFC 8174</a>, DOI 10.17487/RFC8174,
May 2017, <<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>>.
<span class="grey">Zhu, et al. Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
<span class="h3"><a class="selflink" id="section-11.2" href="#section-11.2">11.2</a>. Informative References</span>
[<a id="ref-H264">H264</a>] ITU-T, "Advanced video coding for generic audiovisual
services", Recommendation H.264, April 2017,
<<a href="https://www.itu.int/rec/T-REC-H.264">https://www.itu.int/rec/T-REC-H.264</a>>.
[<a id="ref-H265">H265</a>] ITU-T, "High efficiency video coding",
Recommendation H.265, February 2018,
<<a href="https://www.itu.int/rec/T-REC-H.265">https://www.itu.int/rec/T-REC-H.265</a>>.
[<a id="ref-Hu2012">Hu2012</a>] Hu, H., Ma, Z., and Y. Wang, "Optimization of Spatial,
Temporal and Amplitude Resolution for Rate-Constrained
Video Coding and Scalable Video Adaptation", Proc. 19th
IEEE International Conference on Image Processing (ICIP),
DOI 10.1109/ICIP.2012.6466960, September 2012.
[<a id="ref-IETF-Interim">IETF-Interim</a>]
Zhu, X., Mena, S., and Z. Sarker, "Update on RMCAT Video
Traffic Model: Trace Analysis and Model Update", IETF
RMCAT Virtual Interim, April 2017,
<<a href="https://www.ietf.org/proceedings/interim-2017-rmcat-01/slides/slides-interim-2017-rmcat-01-sessa-update-on-video-traffic-model-draft-00.pdf">https://www.ietf.org/proceedings/interim-2017-rmcat-</a>
<a href="https://www.ietf.org/proceedings/interim-2017-rmcat-01/slides/slides-interim-2017-rmcat-01-sessa-update-on-video-traffic-model-draft-00.pdf">01/slides/slides-interim-2017-rmcat-01-sessa-update-on-</a>
<a href="https://www.ietf.org/proceedings/interim-2017-rmcat-01/slides/slides-interim-2017-rmcat-01-sessa-update-on-video-traffic-model-draft-00.pdf">video-traffic-model-draft-00.pdf</a>>.
[<a id="ref-ns-2">ns-2</a>] "The Network Simulator - ns-2", December 2015,
<<a href="https://nsnam.sourceforge.net/wiki/index.php/User_Information">https://nsnam.sourceforge.net/wiki/index.php/</a>
<a href="https://nsnam.sourceforge.net/wiki/index.php/User_Information">User_Information</a>>.
[<a id="ref-ns-3">ns-3</a>] "NS-3 Network Simulator", <<a href="https://www.nsnam.org/">https://www.nsnam.org/</a>>.
[<a id="ref-Ozer2011">Ozer2011</a>] Ozer, J., "Video Compression for Flash, Apple Devices and
HTML5", Galax: Doceo Publishing, ISBN-13: 978-0976259503,
2011.
[<a id="ref-Papoulis">Papoulis</a>] Papoulis, A. and S. Pillai, "Probability, Random Variables
and Stochastic Processes", London: McGraw-Hill Europe,
ISBN-13: 978-0071226615, 2002.
[<a id="ref-RFC5104">RFC5104</a>] Wenger, S., Chandra, U., Westerlund, M., and B. Burman,
"Codec Control Messages in the RTP Audio-Visual Profile
with Feedback (AVPF)", <a href="./rfc5104">RFC 5104</a>, DOI 10.17487/RFC5104,
February 2008, <<a href="https://www.rfc-editor.org/info/rfc5104">https://www.rfc-editor.org/info/rfc5104</a>>.
<span class="grey">Zhu, et al. Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc8593">RFC 8593</a> Video Traffic Models for RTP May 2019</span>
[<a id="ref-Syncodecs">Syncodecs</a>]
"Syncodecs: Synthetic codecs for evaluation of RMCAT
work", commit a92d6c8, May 2018,
<<a href="https://github.com/cisco/syncodecs">https://github.com/cisco/syncodecs</a>>.
[<a id="ref-Tanwir2013">Tanwir2013</a>]
Tanwir, S. and H. Perros, "A Survey of VBR Video Traffic
Models", IEEE Communications Surveys and Tutorials, Volume
15, Issue 4, p. 1778-1802,
DOI 10.1109/SURV.2013.010413.00071, January 2013.
Authors' Addresses
Xiaoqing Zhu
Cisco Systems
12515 Research Blvd., Building 4
Austin, TX 78759
United States of America
Email: xiaoqzhu@cisco.com
Sergio Mena
Cisco Systems
EPFL, Quartier de l'Innovation, Batiment E
Ecublens, Vaud 1015
Switzerland
Email: semena@cisco.com
Zaheduzzaman Sarker
Ericsson AB
Torshamnsgatan 23
Stockholm, SE 164 83
Sweden
Phone: +46 10 717 37 43
Email: zaheduzzaman.sarker@ericsson.com
Zhu, et al. Informational [Page 19]
</pre>
|