[FFmpeg-cvslog] avformat/rtpdec_rfc4175: use rawvideo for uyvy422
Limin Wang
git at videolan.org
Thu Nov 25 12:19:48 EET 2021
ffmpeg | branch: master | Limin Wang <lance.lmwang at gmail.com> | Wed Nov 10 19:35:47 2021 +0800| [3399bbab4dcfb8dec3bb1dd238816908791118f3] | committer: Limin Wang
avformat/rtpdec_rfc4175: use rawvideo for uyvy422
Reviewed-by: Lynne <dev at lynne.ee>
Signed-off-by: Limin Wang <lance.lmwang at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3399bbab4dcfb8dec3bb1dd238816908791118f3
---
libavformat/rtpdec_rfc4175.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c
index f50cad76d2..f13736bc3c 100644
--- a/libavformat/rtpdec_rfc4175.c
+++ b/libavformat/rtpdec_rfc4175.c
@@ -55,9 +55,11 @@ static int rfc4175_parse_format(AVStream *stream, PayloadContext *data)
if (data->depth == 8) {
data->pgroup = 4;
pixfmt = AV_PIX_FMT_UYVY422;
+ stream->codecpar->codec_id = AV_CODEC_ID_RAWVIDEO;
} else if (data->depth == 10) {
data->pgroup = 5;
pixfmt = AV_PIX_FMT_YUV422P10;
+ stream->codecpar->codec_id = AV_CODEC_ID_BITPACKED;
} else {
return AVERROR_INVALIDDATA;
}
@@ -268,7 +270,7 @@ static int rfc4175_handle_packet(AVFormatContext *ctx, PayloadContext *data,
const RTPDynamicProtocolHandler ff_rfc4175_rtp_handler = {
.enc_name = "raw",
.codec_type = AVMEDIA_TYPE_VIDEO,
- .codec_id = AV_CODEC_ID_BITPACKED,
+ .codec_id = AV_CODEC_ID_NONE,
.priv_data_size = sizeof(PayloadContext),
.parse_sdp_a_line = rfc4175_parse_sdp_line,
.parse_packet = rfc4175_handle_packet,
More information about the ffmpeg-cvslog
mailing list