Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
241fb0c4
Commit
241fb0c4
authored
Jul 17, 2007
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RTP clarifications
Originally committed as revision 9722 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
0509d453
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
10 deletions
+6
-10
faq.texi
doc/faq.texi
+6
-10
No files found.
doc/faq.texi
View file @
241fb0c4
...
...
@@ -406,10 +406,8 @@ The standard MSys bash (2.04) is broken. You need to install 2.05 or later.
@section I tried to pass RTP packets into a decoder, but it doesn't work.
Of course not, you MUST strip ALL RTP headers and assemble valid packets
first, an MP3 decoder decodes MP3 packets not bastardized MP3 packets
encapsulated in RTP. The same applies to all decoders, this is not specific
to ffmpeg or libavcodec.
RTP is a container format like any other, you must first depacketize the
codec frames/samples stored in RTP and then feed to the decoder.
@section Where can I find libav* headers for Pascal/Delphi?
...
...
@@ -419,12 +417,10 @@ see @url{http://www.iversenit.dk/dev/ffmpeg-headers/}
see @url
{
http://svn.mplayerhq.hu/michael/trunk/docs/
}
@section how do I feed H.263-RTP (and
likely other RTP bastardizations of codecs
) to libavcodec?
@section how do I feed H.263-RTP (and
other codecs in rtp
) to libavcodec?
Remove
_
ALL
_
RTP trash and either feed the fragments through an AVParser and
then into the decoder or merge the fragments yourself into proper frames and
feed them into the decoder. Note: The payload of H.263-RTP is not valid
H.263 you at least have to merge the first and last bytes discarding RTP trash
from them, possibly more. Also look at rfc 4629.
Even if peculiar since it is network oriented, RTP is a container like any
other. You have to DEMUX RTP before feeding the payload to libavcodec.
In this specific case please look at rfc 4629 to see how it should be done.
@bye
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment