Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-12-21rtpdec: Pass the sequence number to depacketizersMartin Storsjö
This allows depacketizers to figure out if packets have been lost. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-12-21miscellaneous typo fixesDiego Biurrun
2012-11-02rtpdec: factorize identical code used in several handlersAnton Khirnov
2012-09-12rtpdec_jpeg: Error out on other unsupported type values as wellMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-12rtpdec_jpeg: Disallow using the reserved q valuesMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-12rtpdec_jpeg: Fold the default qtables case into an existing if statementMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-12rtpdec_jpeg: Store and reuse old qtables for q values 128-254Martin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-12rtpdec_jpeg: Simplify the calculation of the number of qtablesMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-12rtpdec_jpeg: Add more comments about the fields in the SOF0 sectionMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-12rtpdec_jpeg: Clarify where the subsampling magic numbers come fromMartin Storsjö
Write out the numbers the way they are constructed, not just the final values. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-12rtpdec_jpeg: Don't use a bitstream writer for the EOI markerMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-12rtpdec_jpeg: Don't needlessly use a bitstream writer for the headerMartin Storsjö
Everything written with this bitstream writer is 8/16 bit units (except for a pair of 4 bit values), so using a bitstream writer isn't necessary. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-12rtpdec_jpeg: Simplify writing of the jpeg headerMartin Storsjö
Generalize writing of any number of qtables. Don't manually write 16 bit values in two separate calls. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-12rtpdec_jpeg: Merge two if statementsMartin Storsjö
This makes the code more readable and robust. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-12rtpdec_jpeg: Write the DHT section properlyMartin Storsjö
Currently the size header of the generated DHT section is incorrect, making the mjpeg decoder just skip it. Since the written huffman tables are the default ones, this failure had gone undetected. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-11rtpdec_jpeg: Add support for default quantizersSamuel Pitoiset
Generate quantization tables when they are not present in the first chunk. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-09rtp: Depacketization of JPEG (RFC 2435)Samuel Pitoiset
Signed-off-by: Martin Storsjö <martin@martin.st>