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
|
<pre>Internet Engineering Task Force (IETF) K. Kobayashi
Request for Comments: 6469 AICS, RIKEN
Obsoletes: <a href="./rfc3189">3189</a> K. Mishima
Category: Standards Track Keio University
ISSN: 2070-1721 S. Casner
Packet Design
C. Bormann
Universitaet Bremen TZI
December 2011
<span class="h1">RTP Payload Format for DV (IEC 61834) Video</span>
Abstract
This document specifies the packetization scheme for encapsulating
the compressed digital video data streams commonly known as "DV" into
a payload format for the Real-Time Transport Protocol (RTP). This
document obsoletes <a href="./rfc3189">RFC 3189</a>.
Status of This Memo
This is an Internet Standards Track document.
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). Further information on
Internet Standards is available in <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc6469">http://www.rfc-editor.org/info/rfc6469</a>.
Copyright Notice
Copyright (c) 2011 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="http://trustee.ietf.org/license-info">http://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.
<span class="grey">Kobayashi, et al. Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
This document may contain material from IETF Documents or IETF
Contributions published or made publicly available before November
10, 2008. The person(s) controlling the copyright in some of this
material may not have granted the IETF Trust the right to allow
modifications of such material outside the IETF Standards Process.
Without obtaining an adequate license from the person(s) controlling
the copyright in such materials, this document may not be modified
outside the IETF Standards Process, and derivative works of it may
not be created outside the IETF Standards Process, except to format
it for publication as an RFC or to translate it into languages other
than English.
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-3">3</a>
<a href="#section-1.1">1.1</a>. Terminology ................................................<a href="#page-4">4</a>
<a href="#section-2">2</a>. RTP Payload Format ..............................................<a href="#page-4">4</a>
<a href="#section-2.1">2.1</a>. The DV Format Encoding .....................................<a href="#page-4">4</a>
<a href="#section-2.2">2.2</a>. RTP Header Usage ...........................................<a href="#page-5">5</a>
<a href="#section-2.3">2.3</a>. Payload Structures .........................................<a href="#page-6">6</a>
<a href="#section-3">3</a>. Payload Format Parameters .......................................<a href="#page-7">7</a>
<a href="#section-3.1">3.1</a>. Media Type Registration ....................................<a href="#page-7">7</a>
<a href="#section-3.1.1">3.1.1</a>. Media Type Registration for DV Video ................<a href="#page-8">8</a>
<a href="#section-3.1.2">3.1.2</a>. Media Type Registration for DV Audio ................<a href="#page-9">9</a>
<a href="#section-3.2">3.2</a>. SDP Parameters ............................................<a href="#page-11">11</a>
<a href="#section-3.2.1">3.2.1</a>. Mapping of Payload Type Parameters to SDP ..........<a href="#page-11">11</a>
<a href="#section-3.2.2">3.2.2</a>. Usage with the SDP Offer/Answer Model ..............<a href="#page-12">12</a>
<a href="#section-3.3">3.3</a>. Examples ..................................................<a href="#page-12">12</a>
<a href="#section-3.3.1">3.3.1</a>. Example for Unbundled Streams ......................<a href="#page-13">13</a>
<a href="#section-3.3.2">3.3.2</a>. Example for Bundled Streams ........................<a href="#page-13">13</a>
<a href="#section-4">4</a>. Security Considerations ........................................<a href="#page-14">14</a>
<a href="#section-5">5</a>. Congestion Control .............................................<a href="#page-14">14</a>
<a href="#section-6">6</a>. IANA Considerations ............................................<a href="#page-14">14</a>
<a href="#section-7">7</a>. Major Changes from <a href="./rfc3189">RFC 3189</a> ....................................<a href="#page-15">15</a>
<a href="#section-8">8</a>. Interoperability with Previous Implementations .................<a href="#page-15">15</a>
<a href="#section-9">9</a>. Acknowledgment .................................................<a href="#page-16">16</a>
<a href="#section-10">10</a>. References ....................................................<a href="#page-16">16</a>
<a href="#section-10.1">10.1</a>. Normative References .....................................<a href="#page-16">16</a>
<a href="#section-10.2">10.2</a>. Informative References ...................................<a href="#page-17">17</a>
<span class="grey">Kobayashi, et al. Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
This document specifies payload formats for encapsulating both
consumer- and professional-use Digital Video (DV) format data streams
into the Real-Time Transport Protocol (RTP) [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>]. DV
compression audio and video formats were designed for a recording
format on helical-scan magnetic tape media. The DV standards for
consumer-market devices, the IEC 61883 and 61834 series, cover many
aspects of consumer-use digital video, including mechanical
specifications of a cassette, magnetic recording format, error
correction on the magnetic tape, Discrete Cosine Transform (DCT)
video encoding format, and audio encoding format [<a href="#ref-IEC61834" title=""IEC 61834, Helical-scan digital video cassette recording system using 6,35 mm magnetic tape for consumer use (525-60, 625-50, 1125-60 and 1250-50 systems)"">IEC61834</a>]. The
digital interface part of IEC 61883 defines an interface on the IEEE
1394 system [<a href="#ref-IEC61883" title=""IEC 61883, Consumer audio/video equipment - Digital interface"">IEC61883</a>][IEEE1394]. This specification set supports
several video formats: SD-VCR (Standard Definition), HD-VCR (High
Definition), SDL-VCR (Standard Definition - Long), PALPlus, DVB
(Digital Video Broadcast), and ATV (Advanced Television). North
American formats are indicated with a number of lines and "/60",
while European formats use "/50". DV standards extended for
professional use were published by the Society of Motion Picture and
Television Engineers (SMPTE) as 314M and 370M, for different sampling
systems, higher color resolution, and higher bit rates
[<a href="#ref-SMPTE314M" title=""SMPTE 314M, Data Structure for DV-Based Audio and Compressed Video - 25 and 50Mb/s"">SMPTE314M</a>][SMPTE370M].
In summary, there are two kinds of DV, one for consumer use and the
other for professional. The original "DV" specification designed for
consumer-use digital VCRs is approved as the IEC 61834 standard set.
The specifications for professional DV are published as SMPTE 314M
and 370M. Both encoding formats are based on consumer DV and used in
SMPTE D-7, D-9, and D-12 video systems. The RTP payload format
specified in this document supports IEC 61834 consumer DV and
professional SMPTE 314M and 370M (DV-based) formats.
IEC 61834 also includes magnetic tape recording for digital TV
broadcasting systems (such as DVB and ATV) that use MPEG2 encoding.
The payload format for encapsulating MPEG2 into RTP has already been
defined in <a href="./rfc2250">RFC 2250</a> [<a href="./rfc2250" title=""RTP Payload Format for MPEG1/MPEG2 Video"">RFC2250</a>] and elsewhere.
Consequently, the payload specified in this document will support six
video formats of the IEC standard: SD-VCR (525/60, 625/50), HD-VCR
(1125/60, 1250/50), and SDL-VCR (525/60, 625/50). It also supports
eight of the SMPTE standards: 314M 25 Mbit/s (525/60, 625/50), 314M
50 Mbit/s (525/60, 625/50), and 370M 100 Mbit/s (1080/60i, 1080/50i,
720/60p, and 720/50p). In the future, it can be extended into other
video formats managed by the 80-byte DV Digital Interface Format
(DIF) block.
<span class="grey">Kobayashi, et al. Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
Throughout this specification, we make extensive use of the
terminology of IEC and SMPTE standards. The reader should consult
the original references for definitions of these terms.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Terminology</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <a href="./rfc2119">RFC 2119</a> [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. RTP Payload Format</span>
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. The DV Format Encoding</span>
The DV format only uses the DCT compression technique within each
frame, contrasted with the interframe compression of the MPEG video
standards [ISO/IEC11172][ISO/IEC13818]. All video data, including
audio and other system data, is managed within the picture frame unit
of video.
The DV video encoding is composed of a three-level hierarchical
structure, i.e., DCT super block, DCT macro block, and DCT block. A
picture frame is divided into rectangle- or clipped-rectangle-shaped
DCT super blocks. DCT super blocks are divided into 27 rectangle- or
square-shaped DCT macro blocks, and each DCT macro block consists of
a number of DCT blocks. Each DCT block consists of 8x8 pixels and
represents a rectangle region for each color, Y, Cb, and Cr.
Audio data is encoded in Pulse Code Modulation (PCM) format. The
sampling frequency is 32 kHz, 44.1 kHz, or 48 kHz and the
quantization is 12-bit non-linear, 16-bit linear, or 20-bit linear.
The number of channels may be up to 8. Only certain combinations of
these parameters are allowed, depending upon the video format; the
restrictions are specified in each document [<a href="#ref-IEC61834" title=""IEC 61834, Helical-scan digital video cassette recording system using 6,35 mm magnetic tape for consumer use (525-60, 625-50, 1125-60 and 1250-50 systems)"">IEC61834</a>][SMPTE314M]
[<a href="#ref-SMPTE370M" title=""SMPTE 370M, Data Structure for DV-Based Audio, Data and Compressed Video at 100 Mb/s 1080/ 60i, 1080/50i, 720/60p, and 720/50p"">SMPTE370M</a>].
A frame of data in the DV format stream is divided into several "DIF
sequences". A DIF sequence is composed of an integral number of
80-byte DIF blocks. A DIF block is the primitive unit for all
treatment of DV streams. Each DIF block contains a 3-byte ID header
that specifies the type of the DIF block and its position in the DIF
sequence. Five types of DIF blocks are defined: DIF sequence header,
Subcode, Video Auxiliary (VAUX) information, Audio, and Video. Audio
DIF blocks are composed of 5 bytes of Audio Auxiliary (AAUX) data and
72 bytes of audio data.
<span class="grey">Kobayashi, et al. Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
Each RTP packet starts with the RTP header as defined in <a href="./rfc3550">RFC 3550</a>
[<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>]. No additional payload-format-specific header is required
for this payload format.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. RTP Header Usage</span>
The RTP header fields that have a meaning specific to the DV format
are described as follows:
Payload type (PT): The payload type is dynamically assigned by means
outside the scope of this document. If multiple DV encoding formats
are to be used within one RTP session, then multiple dynamic payload
types MUST be assigned, one for each DV encoding format. The sender
MUST change to the corresponding payload type whenever the encoding
format is changed.
Timestamp: 32-bit 90 kHz timestamp representing the time at which the
first data in the frame was sampled. All RTP packets within the same
video frame MUST have the same timestamp. The timestamp SHOULD
increment by a multiple of the nominal interval for one DV frame
time, as given in the following table:
+----------+----------------+---------------------------------------+
| Mode | Frame rate | Increase of 90 kHz timestamp per DV |
| | (Hz) | frame |
+----------+----------------+---------------------------------------+
| 525-60 | 29.97 | 3003 |
| 625-50 | 25 | 3600 |
| 1125-60 | 30 | 3000 |
| 1250-50 | 25 | 3600 |
| 1080-60i | 29.97 | 3003 |
| 1080-50i | 25 | 3600 |
| 720-60p | 59.94 | 3003(*) |
| 720-50p | 50 | 3600(*) |
+----------+----------------+---------------------------------------+
(*) Note that even in the 720-line DV system, the data in two video
frames shall be processed within one DV frame duration of the 1080-
line system. Audio data and subcode data in the 720-line system are
processed in the same way as the 1080-line system. Therefore, in the
720-line system, the timestamp increase given in the third column
corresponds to two video frames time.
Marker bit (M): The marker bit of the RTP fixed header is set to one
on the last packet of a video frame; on other packets, it MUST be
zero. The M bit allows the receiver to know that it has received the
last packet of a frame so it can display the image without waiting
for the first packet of the next frame to arrive to detect the frame
<span class="grey">Kobayashi, et al. Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
change. However, detection of a frame change MUST NOT rely on the
marker bit since the last packet of the frame might be lost.
Detection of a frame change MUST be based on a difference in the RTP
timestamp.
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Payload Structures</span>
Integral DIF blocks are placed into the RTP payload beginning
immediately after the RTP header. Any number of DIF blocks may be
packed into one RTP packet, but all DIF blocks in one RTP packet MUST
be from the same video frame. DIF blocks from the next video frame
MUST NOT be packed into the same RTP packet even if more payload
space remains. This requirement stems from the fact that the
transition from one video frame to the next is indicated by a change
in the RTP timestamp. It also reduces the processing complexity on
the receiver. Since the RTP payload contains an integral number of
DIF blocks, the length of the RTP payload will be a multiple of 80
bytes.
Audio and video data may be transmitted as one bundled RTP stream or
in separate RTP streams (unbundled). The choice MUST be indicated as
part of the assignment of the dynamic payload type and MUST remain
unchanged for the duration of the RTP session to avoid complicated
procedures of sequence number synchronization. The RTP sender could
omit the DIF sequence header and subcode DIF blocks from a stream
when the information either is known from out-of-band sources or is
not required for the application. Note that time code in DIF blocks
is mandatory for professional video applications. When unbundled
audio and video streams are sent, any DIF sequence header and subcode
DIF blocks MUST be included and sent in the video stream.
DV streams include "source" and "source control" packs that carry
information indispensable for proper decoding, such as video signal
type, frame rate, aspect ratio, picture position, quantization of
audio sampling, number of audio samples in a frame, number of audio
channels, audio channel assignment, and language of the audio.
However, describing all of these attributes with a signaling protocol
would require large descriptions to enumerate all the combinations.
Therefore, no Session Description Protocol (SDP) [<a href="./rfc4566" title=""SDP: Session Description Protocol"">RFC4566</a>] parameters
for these attributes are defined in this document. Instead, the RTP
sender MUST transmit at least those VAUX (Video Auxiliary) DIF blocks
and/or audio DIF blocks with AAUX (Audio Auxiliary) information bytes
that include "source" and "source control" packs containing the
indispensable information for decoding.
In the case of one bundled stream, DIF blocks for both audio and
video are packed into RTP packets in the same order as they were
encoded.
<span class="grey">Kobayashi, et al. Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
In the case of an unbundled stream, only the header, subcode, video,
and VAUX DIF blocks are sent within the video stream. Audio is sent
in a different stream if desired, using a different RTP payload type.
It is also possible to send audio duplicated in a separate stream, in
addition to bundling it in with the video stream.
When using unbundled mode, it is RECOMMENDED that the audio stream
data be extracted from the DIF blocks and repackaged into the
corresponding RTP payload format for the audio encoding (DAT12, L16,
L20) [<a href="./rfc3551" title=""RTP Profile for Audio and Video Conferences with Minimal Control"">RFC3551</a>][RFC3190] in order to maximize interoperability with
non-DV-capable receivers while maintaining the original source
quality.
In the case of unbundled transmission that is compelled to use both
audio and video in the DV format, the same timestamp SHOULD be used
for both audio and video data within the same frame to simplify the
lip synchronization effort on the receiver. Lip synchronization may
also be achieved using reference timestamps passed in RTP Control
Protocol (RTCP) as described in [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>]. In this case, the audio
stream uses the 90 kHz clock rate, and the timestamp uses the same
clock rate as the video.
The sender MAY reduce the video frame rate by discarding the video
data and VAUX DIF blocks for some of the video frames. The RTP
timestamp MUST still be incremented to account for the discarded
frames. The sender MAY alternatively reduce bandwidth by discarding
video data DIF blocks for portions of the image that are unchanged
from the previous image. To enable this bandwidth reduction,
receivers SHOULD implement an error-concealment strategy to
accommodate lost or missing DIF blocks, e.g., repeating the
corresponding DIF block from the previous image.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Payload Format Parameters</span>
This section specifies the parameters that MAY be used to select
optional features of the payload format and certain features of the
bitstream. The parameters are specified here as part of the media
type registration for the DV encoding. A mapping of the parameters
into the Session Description Protocol (SDP) [<a href="./rfc4566" title=""SDP: Session Description Protocol"">RFC4566</a>] is also
provided for applications that use SDP. Equivalent parameters could
be defined elsewhere for use with control protocols that do not use
SDP.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Media Type Registration</span>
This registration is done using the template defined in <a href="./rfc4288">RFC 4288</a>
[<a href="./rfc4288" title=""Media Type Specifications and Registration Procedures"">RFC4288</a>] and following <a href="./rfc4855">RFC 4855</a> [<a href="./rfc4855" title=""Media Type Registration of RTP Payload Formats"">RFC4855</a>].
<span class="grey">Kobayashi, et al. Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
<span class="h4"><a class="selflink" id="section-3.1.1" href="#section-3.1.1">3.1.1</a>. Media Type Registration for DV Video</span>
Type name: video
Subtype name: DV
Required parameters:
encode: type of DV format. Permissible values for encode are:
SD-VCR/525-60
SD-VCR/625-50
HD-VCR/1125-60
HD-VCR/1250-50
SDL-VCR/525-60
SDL-VCR/625-50
314M-25/525-60
314M-25/625-50
314M-50/525-60
314M-50/625-50
370M/1080-60i
370M/1080-50i
370M/720-60p
370M/720-50p
306M/525-60 (for backward compatibility)
306M/625-50 (for backward compatibility)
Optional parameters:
audio: whether the DV stream includes audio data or not.
Permissible values for audio are bundled and none. Defaults to
none.
Encoding considerations:
DV video can be transmitted with RTP as specified in <a href="./rfc6469">RFC 6469</a>
(this document). Other transport methods are not specified.
Security considerations:
See <a href="./rfc6469#section-4">Section 4 of RFC 6469</a> (this document).
Interoperability considerations: Interoperability with previous
implementations is discussed in <a href="#section-8">Section 8</a>.
<span class="grey">Kobayashi, et al. Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
Public specifications:
IEC 61834 Standard
SMPTE 314M
SMPTE 370M
<a href="./rfc6469">RFC 6469</a> (this document)
SMPTE 306M (for backward compatibility)
Applications that use this media type: Audio and video streaming and
conferencing tools.
Additional information: NONE
Person & email address to contact for further information:
Katsushi Kobayashi
ikob@riken.jp
Intended usage: COMMON
Restrictions on usage: This media type depends on RTP framing and
hence is only defined for transfer via RTP [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>]. Transfer
within other framing protocols is not defined at this time.
Author:
Katsushi Kobayashi
Change controller:
IETF Audio/Video Transport working group delegated from the
IESG
<span class="h4"><a class="selflink" id="section-3.1.2" href="#section-3.1.2">3.1.2</a>. Media Type Registration for DV Audio</span>
Type name: audio
Subtype name: DV
Required parameters:
encode: type of DV format. Permissible values for encode are:
SD-VCR/525-60
SD-VCR/625-50
HD-VCR/1125-60
HD-VCR/1250-50
SDL-VCR/525-60
SDL-VCR/625-50
<span class="grey">Kobayashi, et al. Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
314M-25/525-60
314M-25/625-50
314M-50/525-60
314M-50/625-50
370M/1080-60i
370M/1080-50i
370M/720-60p
370M/720-50p
306M/525-60 (for backward compatibility)
306M/625-50 (for backward compatibility)
Optional parameters:
audio: whether the DV stream includes audio data or not.
Permissible values for audio are bundled and none. Defaults to
none.
Encoding considerations:
DV audio can be transmitted with RTP as specified in <a href="./rfc6469">RFC 6469</a>
(this document). Other transport methods are not specified.
Security considerations:
See <a href="./rfc6469#section-4">Section 4 of RFC 6469</a> (this document).
Interoperability considerations: Interoperability with previous
implementations is discussed in <a href="#section-8">Section 8</a>.
Published specifications:
IEC 61834 Standard
SMPTE 314M
SMPTE 370M
<a href="./rfc6469">RFC 6469</a> (this document)
SMPTE 306M (for backward compatibility).
Applications that use this media type: Audio and video streaming and
conferencing tools.
Additional information: NONE
Person & email address to contact for further information:
Katsushi Kobayashi
ikob@riken.jp
Intended usage: COMMON
<span class="grey">Kobayashi, et al. Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
Restrictions on usage: This media type depends on RTP framing and
hence is only defined for transfer via RTP [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>]. Transfer
within other framing protocols is not defined at this time.
Author:
Katsushi Kobayashi
Change controller:
IETF Audio/Video Transport working group delegated from the
IESG
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. SDP Parameters</span>
<span class="h4"><a class="selflink" id="section-3.2.1" href="#section-3.2.1">3.2.1</a>. Mapping of Payload Type Parameters to SDP</span>
The information carried in the media type specification has a
specific mapping to fields in the Session Description Protocol (SDP),
which is commonly used to describe RTP sessions. When SDP is used to
specify sessions employing the DV encoding, the mapping is as
follows:
o The media type ("video") goes in SDP "m=" as the media name.
o The media subtype ("DV") goes in SDP "a=rtpmap" as the encoding
name. The RTP clock rate in "a=rtpmap" MUST be 90000, which for
the payload format defined in this document is a 90 kHz clock.
o Any remaining parameters go in the SDP "a=fmtp" attribute by
copying them directly from the media type string as a semicolon-
separated list of parameter=value pairs.
In the DV video payload format, the "a=fmtp" line will be used to
show the encoding type within the DV video and will be used as below:
a=fmtp:<payload type> encode=<DV-video encoding>
The required parameter "encode" specifies which type of DV format is
used. The DV format name will be one of the following values:
SD-VCR/525-60
SD-VCR/625-50
HD-VCR/1125-60
HD-VCR/1250-50
SDL-VCR/525-60
SDL-VCR/625-50
314M-25/525-60
<span class="grey">Kobayashi, et al. Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
314M-25/625-50
314M-50/525-60
314M-50/625-50
370M/1080-60i
370M/1080-50i
370M/720-60p
370M/720-50p
306M/525-60 (for backward compatibility)
306M/625-50 (for backward compatibility)
In order to show whether or not the audio data is bundled into the DV
stream, a format-specific parameter is defined:
a=fmtp:<payload type> encode=<DV-video encoding> audio=<audio
bundled>
The optional parameter "audio" will be one of the following values:
bundled
none (default)
If the fmtp "audio" parameter is not present, then audio data MUST
NOT be bundled into the DV video stream.
<span class="h4"><a class="selflink" id="section-3.2.2" href="#section-3.2.2">3.2.2</a>. Usage with the SDP Offer/Answer Model</span>
The following considerations apply when using SDP offer/answer
procedures [<a href="./rfc3264" title=""An Offer/Answer Model with Session Description Protocol (SDP)"">RFC3264</a>] to negotiate the use of the DV payload in RTP:
o The "encode" parameter can be used for sendrecv, sendonly, and
recvonly streams. Each encode type MUST use a separate payload
type number.
o Any unknown parameter in an offer MUST be ignored by the receiver
and MUST NOT be included in the answer.
In an offer for unbundled streams, the group attribute as defined in
the Session Description Protocol (SDP) Grouping Framework [<a href="./rfc5888" title=""The Session Description Protocol (SDP) Grouping Framework"">RFC5888</a>]
can be used in order to associate the related audio and video. The
example usage of SDP grouping is detailed in [<a href="./rfc5888" title=""The Session Description Protocol (SDP) Grouping Framework"">RFC5888</a>].
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Examples</span>
Some example SDP session descriptions utilizing DV encoding formats
follow.
<span class="grey">Kobayashi, et al. Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
<span class="h4"><a class="selflink" id="section-3.3.1" href="#section-3.3.1">3.3.1</a>. Example for Unbundled Streams</span>
When using unbundled mode, the RTP streams for video and audio will
be sent separately to different ports or different multicast groups.
When unbundled audio and video streams are sent, SDP carries several
"m=" lines, one for each media type of the session (see [<a href="./rfc4566" title=""SDP: Session Description Protocol"">RFC4566</a>]).
An example SDP description using these attributes is:
v=0
o=ikob 2890844526 2890842807 IN IP4 192.0.2.1
s=POI Seminar
i=A Seminar on how to make Presentations on the Internet
u=http://www.example.net/~ikob/POI/index.html
e=ikob@example.net (Katsushi Kobayashi)
c=IN IP4 233.252.0.1/127
t=2873397496 2873404696
m=audio 49170 RTP/AVP 112
a=rtpmap:112 L16/32000/2
m=video 50000 RTP/AVP 113
a=rtpmap:113 DV/90000
a=fmtp:113 encode=SD-VCR/525-60 audio=none
This describes a session where audio and video streams are sent
separately. The session is sent to a multicast group 233.252.0.1.
The audio is sent using L16 format, and the video is sent using
SD-VCR 525/60 format, which corresponds to NTSC format in consumer
DV.
<span class="h4"><a class="selflink" id="section-3.3.2" href="#section-3.3.2">3.3.2</a>. Example for Bundled Streams</span>
When sending a bundled stream, all the DIF blocks including system
data will be sent through a single RTP stream.
An example SDP description for a bundled DV stream is:
v=0
o=ikob 2890844526 2890842807 IN IP4 192.0.2.1
s=POI Seminar
i=A Seminar on how to make Presentations on the Internet
u=http://www.example.net/~ikob/POI/index.html
e=ikob@example.net (Katsushi Kobayashi)
c=IN IP4 233.252.0.1/127
t=2873397496 2873404696
m=video 49170 RTP/AVP 112 113
a=rtpmap:112 DV/90000
a=fmtp:112 encode=SD-VCR/525-60 audio=bundled
a=fmtp:113 encode=314M-50/525-60 audio=bundled
<span class="grey">Kobayashi, et al. Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
This SDP record describes a session where audio and video streams are
sent bundled. The session is sent to a multicast group 233.252.0.1.
The video is sent using both 525/60 consumer DV and SMPTE standard
314M 50 Mbit/s formats, when the payload type is 112 and 113,
respectively.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Security Considerations</span>
RTP packets using the payload format defined in this specification
are subject to the security considerations discussed in the RTP
specification [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>] and any appropriate RTP profile. This
implies that confidentiality of the media streams is achieved by
encryption. Because the data compression used with this payload
format is applied end-to-end, encryption may be performed after
compression so there is no conflict between the two operations.
A potential denial-of-service threat exists for data encodings using
compression techniques that have non-uniform receiver-end
computational load. The attacker can inject pathological datagrams
into the stream that are complex to decode and cause the receiver to
be overloaded. However, this encoding does not exhibit any
significant non-uniformity.
As with any IP-based protocol, in some circumstances, a receiver may
be overloaded simply by the receipt of too many packets, either
desired or undesired. Network-layer authentication may be used to
discard packets from undesired sources, but the processing cost of
the authentication itself may be too high. In a multicast
environment, mechanisms for joining and pruning of specific sources
are specified in IGMPv3, Multicast Listener Discovery Version 2
(MLDv2) [<a href="./rfc3376" title=""Internet Group Management Protocol, Version 3"">RFC3376</a>][RFC3810] or Lightweight-IGMPv3 (LW-IGMPv3),
LW-MLDv2 [<a href="./rfc5790" title=""Lightweight Internet Group Management Protocol Version 3 (IGMPv3) and Multicast Listener Discovery Version 2 (MLDv2) Protocols"">RFC5790</a>] and in multicast routing protocols to allow a
receiver to select which sources are allowed to reach it [<a href="./rfc4607" title=""Source-Specific Multicast for IP"">RFC4607</a>].
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Congestion Control</span>
The general congestion control considerations for transporting RTP
data apply; see RTP [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>] and any applicable RTP profile like
Audio-Visual Profile (AVP) [<a href="./rfc3551" title=""RTP Profile for Audio and Video Conferences with Minimal Control"">RFC3551</a>].
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. IANA Considerations</span>
This document obsoletes [<a href="./rfc3189" title=""RTP Payload Format for DV (IEC 61834) Video"">RFC3189</a>], and some registration forms have
been updated by this document. The registration forms (based on the
<a href="./rfc4855">RFC 4855</a> [<a href="./rfc4855" title=""Media Type Registration of RTP Payload Formats"">RFC4855</a>] definition) for the media types for both video and
audio are shown in <a href="#section-3.1">Section 3.1</a>.
<span class="grey">Kobayashi, et al. Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Major Changes from <a href="./rfc3189">RFC 3189</a></span>
The changes from [<a href="./rfc3189" title=""RTP Payload Format for DV (IEC 61834) Video"">RFC3189</a>] are:
1. Specified that support for SMPTE 306M is only for backward
interoperability, since it is covered by SMPTE 314M format.
2. Added SMPTE 370M 100 Mbit/s High Definition Television (HDTV)
(1080/60i, 1080/50i, 720/60p, and 720/50p) format.
3. Incorporated the Source-Specific Multicast (SSM) specification
for avoiding overloaded traffic source in multicast usage. Added
a reference to the Source-Specific Multicast (SSM) specification
as a way to reduce unwanted traffic in a multicast application.
4. Clarified the case where a sender omits subcode DIF block data
from the stream.
5. Added considerations for the offer/answer model.
6. Revised media types registration form based on new registration
rule [<a href="./rfc4855" title=""Media Type Registration of RTP Payload Formats"">RFC4855</a>].
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Interoperability with Previous Implementations</span>
In this section, we discuss interoperability with implementations
based on [<a href="./rfc3189" title=""RTP Payload Format for DV (IEC 61834) Video"">RFC3189</a>], which is obsoleted by this document.
[<a id="ref-RFC3189">RFC3189</a>] regards SMPTE 306M [<a href="#ref-SMPTE306M" title=""SMPTE 306M, 6.35-mm Type D-7 Component Format - Video Compression at 25Mb/s - 525/60 and 625/50"">SMPTE306M</a>] and SMPTE 314M [<a href="#ref-SMPTE314M" title=""SMPTE 314M, Data Structure for DV-Based Audio and Compressed Video - 25 and 50Mb/s"">SMPTE314M</a>]
as different encoding formats, although the format of SMPTE 306M is
already covered by SMPTE 314M. Therefore, this document recommends
that the definition depending on SMPTE 306M SHOULD NOT be used, and
SMPTE 314M SHOULD be used instead. An RTP application could handle a
stream identified in SMPTE 306M encoding as SMPTE 314M encoding
instead.
An offer MAY include SMPTE 306M encoding coming from a legacy system,
and receivers SHOULD support this value.
If an initial offer that did not include SMPTE 306M was rejected, the
offerer MAY try a new offer with SMPTE 306M. For this case, an RTP
application MAY handle a stream identified in SMPTE 306M encoding as
SMPTE 314M encoding instead.
In addition, the SDP examples in [<a href="./rfc3189" title=""RTP Payload Format for DV (IEC 61834) Video"">RFC3189</a>] provide incorrect SDP
"a=fmtp" attribute usage.
<span class="grey">Kobayashi, et al. Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Acknowledgment</span>
Thanks to Akimichi Ogawa, a former author of this document.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. References</span>
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>. Normative References</span>
[<a id="ref-IEC61834">IEC61834</a>] IEC, "IEC 61834, Helical-scan digital video cassette
recording system using 6,35 mm magnetic tape for
consumer use (525-60, 625-50, 1125-60 and 1250-50
systems)".
[<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>, March 1997.
[<a id="ref-RFC3190">RFC3190</a>] Kobayashi, K., Ogawa, A., Casner, S., and C. Bormann,
"RTP Payload Format for 12-bit DAT Audio and 20- and
24-bit Linear Sampled Audio", <a href="./rfc3190">RFC 3190</a>, January 2002.
[<a id="ref-RFC3264">RFC3264</a>] Rosenberg, J. and H. Schulzrinne, "An Offer/Answer
Model with Session Description Protocol (SDP)",
<a href="./rfc3264">RFC 3264</a>, June 2002.
[<a id="ref-RFC3550">RFC3550</a>] Schulzrinne, H., Casner, S., Frederick, R., and V.
Jacobson, "RTP: A Transport Protocol for Real-Time
Applications", STD 64, <a href="./rfc3550">RFC 3550</a>, July 2003.
[<a id="ref-RFC3551">RFC3551</a>] Schulzrinne, H. and S. Casner, "RTP Profile for Audio
and Video Conferences with Minimal Control", STD 65,
<a href="./rfc3551">RFC 3551</a>, July 2003.
[<a id="ref-RFC4288">RFC4288</a>] Freed, N. and J. Klensin, "Media Type Specifications
and Registration Procedures", <a href="https://www.rfc-editor.org/bcp/bcp13">BCP 13</a>, <a href="./rfc4288">RFC 4288</a>,
December 2005.
[<a id="ref-RFC4566">RFC4566</a>] Handley, M., Jacobson, V., and C. Perkins, "SDP:
Session Description Protocol", <a href="./rfc4566">RFC 4566</a>, July 2006.
[<a id="ref-RFC4855">RFC4855</a>] Casner, S., "Media Type Registration of RTP Payload
Formats", <a href="./rfc4855">RFC 4855</a>, February 2007.
[<a id="ref-RFC5888">RFC5888</a>] Camarillo, G. and H. Schulzrinne, "The Session
Description Protocol (SDP) Grouping Framework",
<a href="./rfc5888">RFC 5888</a>, June 2010.
[<a id="ref-SMPTE306M">SMPTE306M</a>] SMPTE, "SMPTE 306M, 6.35-mm Type D-7 Component Format
- Video Compression at 25Mb/s - 525/60 and 625/50".
<span class="grey">Kobayashi, et al. Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
[<a id="ref-SMPTE314M">SMPTE314M</a>] SMPTE, "SMPTE 314M, Data Structure for DV-Based Audio
and Compressed Video - 25 and 50Mb/s".
[<a id="ref-SMPTE370M">SMPTE370M</a>] SMPTE, "SMPTE 370M, Data Structure for DV-Based
Audio, Data and Compressed Video at 100 Mb/s 1080/
60i, 1080/50i, 720/60p, and 720/50p".
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>. Informative References</span>
[<a id="ref-IEC61883">IEC61883</a>] IEC, "IEC 61883, Consumer audio/video equipment -
Digital interface".
[<a id="ref-IEEE1394">IEEE1394</a>] IEEE, "IEEE Std 1394-1995, Standard for a High
Performance Serial Bus".
[ISO/IEC11172] ISO/IEC, "ISO/IEC 11172, Coding of moving pictures
and associated audio for digital storage media up to
about 1,5 Mbit/s".
[ISO/IEC13818] ISO/IEC, "ISO/IEC 13818, Generic coding of moving
pictures and associated audio information".
[<a id="ref-RFC2250">RFC2250</a>] Hoffman, D., Fernando, G., Goyal, V., and M.
Civanlar, "RTP Payload Format for MPEG1/MPEG2 Video",
<a href="./rfc2250">RFC 2250</a>, January 1998.
[<a id="ref-RFC3189">RFC3189</a>] Kobayashi, K., Ogawa, A., Casner, S., and C. Bormann,
"RTP Payload Format for DV (IEC 61834) Video",
<a href="./rfc3189">RFC 3189</a>, January 2002.
[<a id="ref-RFC3376">RFC3376</a>] Cain, B., Deering, S., Kouvelas, I., Fenner, B., and
A. Thyagarajan, "Internet Group Management Protocol,
Version 3", <a href="./rfc3376">RFC 3376</a>, October 2002.
[<a id="ref-RFC3810">RFC3810</a>] Vida, R. and L. Costa, "Multicast Listener Discovery
Version 2 (MLDv2) for IPv6", <a href="./rfc3810">RFC 3810</a>, June 2004.
[<a id="ref-RFC4607">RFC4607</a>] Holbrook, H. and B. Cain, "Source-Specific Multicast
for IP", <a href="./rfc4607">RFC 4607</a>, August 2006.
[<a id="ref-RFC5790">RFC5790</a>] Liu, H., Cao, W., and H. Asaeda, "Lightweight
Internet Group Management Protocol Version 3 (IGMPv3)
and Multicast Listener Discovery Version 2 (MLDv2)
Protocols", <a href="./rfc5790">RFC 5790</a>, February 2010.
<span class="grey">Kobayashi, et al. Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc6469">RFC 6469</a> RTP Payload Format for DV Video December 2011</span>
Authors' Addresses
Katsushi Kobayashi
Advanced Institute for Computational Science, RIKEN
7-1-26 Minatojima-minami
Chuo-ku, Kobe, Hyogo 760-0045
Japan
EMail: ikob@riken.jp
Kazuhiro Mishima
Keio University
5322 Endo
Fujisawa, Kanagawa 252-8520
Japan
EMail: three@sfc.wide.ad.jp
Stephen L. Casner
Packet Design
2455 Augustine Drive
Santa Clara, CA 95054
United States
EMail: casner@acm.org
Carsten Bormann
Universitaet Bremen TZI
Postfach 330440
D-28334, Bremen
Germany
Phone: +49 421 218 63921
Fax: +49 421 218 7000
EMail: cabo@tzi.org
Kobayashi, et al. Standards Track [Page 18]
</pre>
|