libeplayer3: disable mjpeg format,because hardware does not support and this kills PTS (mp3 with attached picture)

This commit is contained in:
Jacek Jendrzej
2020-03-02 18:50:21 +01:00
parent f971434ab3
commit cdf663d6b9

View File

@@ -308,7 +308,7 @@ static char *Codec2Encoding(int32_t codec_id, int32_t media_type, uint8_t *extra
case AV_CODEC_ID_MPEG2VIDEO: case AV_CODEC_ID_MPEG2VIDEO:
return "V_MPEG2"; return "V_MPEG2";
case AV_CODEC_ID_MJPEG: case AV_CODEC_ID_MJPEG:
return "V_MJPEG"; return NULL;//"V_MJPEG";
case AV_CODEC_ID_H263: case AV_CODEC_ID_H263:
case AV_CODEC_ID_H263P: case AV_CODEC_ID_H263P:
case AV_CODEC_ID_H263I: case AV_CODEC_ID_H263I: