mirror of https://git.ffmpeg.org/ffmpeg.git
rtpdec_h264: Don't set the pixel format
There is no need for this depacketizer to set the pixel format, the decoder can do that just fine. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
6f5b1a2ba4
commit
6af2480aa6
|
@ -369,7 +369,6 @@ static int parse_h264_sdp_line(AVFormatContext *s, int st_index,
|
||||||
// set our parameters
|
// set our parameters
|
||||||
codec->width = atoi(buf1);
|
codec->width = atoi(buf1);
|
||||||
codec->height = atoi(p + 1); // skip the -
|
codec->height = atoi(p + 1); // skip the -
|
||||||
codec->pix_fmt = PIX_FMT_YUV420P;
|
|
||||||
} else if (av_strstart(p, "fmtp:", &p)) {
|
} else if (av_strstart(p, "fmtp:", &p)) {
|
||||||
return ff_parse_fmtp(stream, h264_data, p, sdp_parse_fmtp_config_h264);
|
return ff_parse_fmtp(stream, h264_data, p, sdp_parse_fmtp_config_h264);
|
||||||
} else if (av_strstart(p, "cliprect:", &p)) {
|
} else if (av_strstart(p, "cliprect:", &p)) {
|
||||||
|
|
Loading…
Reference in New Issue