diff options
author | Damien Riegel <damien.riegel@savoirfairelinux.com> | 2017-03-31 11:36:16 -0400 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2017-04-05 17:03:21 +0100 |
commit | 01718dc0df572d2f5eebd5212e93368f2b90b89a (patch) | |
tree | 18946538f8b6aaeb80282c5168e46eb1bd901e13 /libavformat/Makefile | |
parent | 549acc999533061fedb5088a33a683749c29b903 (diff) | |
download | ffmpeg-01718dc0df572d2f5eebd5212e93368f2b90b89a.tar.gz |
rtp: rfc4175: add handler for YCbCr-4:2:2
This adds partial support for the RFC 4175 (raw video over RTP). The
only supported formats are the YCbCr-4:2:2 8 bit because it's natively
supported by FFmpeg with pixel format UYVY, and 10 bit which requires
the vrawdepay codec to convert the payload in a format handled by
FFmpeg.
Signed-off-by: Damien Riegel <damien.riegel@savoirfairelinux.com>
Reviewed-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index f56ef16532..a1dae894fe 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -55,6 +55,7 @@ OBJS-$(CONFIG_RTPDEC) += rdt.o \ rtpdec_qcelp.o \ rtpdec_qdm2.o \ rtpdec_qt.o \ + rtpdec_rfc4175.o \ rtpdec_svq3.o \ rtpdec_vc2hq.o \ rtpdec_vp8.o \ |