summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec_vp9.c
Commit message (Collapse)AuthorAge
* rtpdec_vp9: Support parsing the scalability structureMartin Storsjö2016-04-30
| | | | | | | | We still only support one single layer though, but this allows receiving streams that have this structure present even for single layer streams. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec: Use AVERROR_PATCHWELCOME instead of AVERROR(ENOSYS) for ↵Martin Storsjö2016-04-30
| | | | | | unimplemented features Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec_vp9: Update header parsing to spec draft 02Martin Storsjö2016-04-30
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec_vp9: Make sure to free the temp buffer on closeMartin Storsjö2016-04-30
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec_vp9: Drop extra sanity check for size of input packetVittorio Giovara2015-03-11
| | | | | | | | In this case len is always at least 1, since it is checked against RTP_VP9_DESC_REQUIRED_SIZE + 1 and then it is reduced by RTP_VP9_DESC_REQUIRED_SIZE before entering the has_pic_id check. Bug-Id: CID 1270811
* rtpdec: experimental VP9 depacketizer (draft 0)Thomas Volkert2015-03-05
The code was tested with live555 server. Signed-off-by: Martin Storsjö <martin@martin.st>