Skip to content
Snippets Groups Projects
Commit d1beee07 authored by Martin Storsjö's avatar Martin Storsjö
Browse files

rtpdec: Don't require frames to start with a Mode A packet


While there is no reason for starting a frame with anything else
than a Mode A packet, some senders seem to consistently use Mode B
packets for everything. This fixes depacketization of such streams.

Signed-off-by: default avatarMartin Storsjö <martin@martin.st>
parent 9034b0ed
No related branches found
No related tags found
No related merge requests found
...@@ -132,7 +132,7 @@ static int h263_handle_packet(AVFormatContext *ctx, PayloadContext *data, ...@@ -132,7 +132,7 @@ static int h263_handle_packet(AVFormatContext *ctx, PayloadContext *data,
if (!data->buf) { if (!data->buf) {
/* Check the picture start code, only start buffering a new frame /* Check the picture start code, only start buffering a new frame
* if this is correct */ * if this is correct */
if (!f && len > 4 && AV_RB32(buf) >> 10 == 0x20) { if (len > 4 && AV_RB32(buf) >> 10 == 0x20) {
int ret = avio_open_dyn_buf(&data->buf); int ret = avio_open_dyn_buf(&data->buf);
if (ret < 0) if (ret < 0)
return ret; return ret;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment