summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpjpegdepay.c
Commit message (Collapse)AuthorAgeFilesLines
* build: fprintf, sprintf, sscanf need stdio.hStefan Kost2009-10-071-0/+1
|
* rtp: add missing include to fix the buildStefan Kost2009-10-021-0/+1
|
* rtpjpegdepay: add missing math.h includeHavard Graff2009-09-081-0/+1
| | | | Fixes #594247
* jpegdepay: use attributes for extra propertiesLuc Deschenaux2009-08-031-4/+62
| | | | | | | | Use some of the SDP attributes when they are present to specify the output dimension and framerate. This allows us to receive jpeg frames larger than 2040 width/height. Fixes #564437
* rtpjpegdepay: use width/height from payloadWim Taymans2009-05-051-11/+45
| | | | | | | | | Use the width and the height from the payload headers and set them on the output caps for added awesomeness. Fix quant parsing, we need to check the type in the lower 6 bits. Add first bits of caching quantization tables.
* Remove trivial unused variables detected by CLang static analyzer.Edward Hervey2009-04-181-3/+0
|
* Remove blank {set|get}_property/change_state/finalize methods.Edward Hervey2009-04-181-34/+0
|
* gst/rtp/gstrtpjpegdepay.c: Add an EOI marker at the end of the jpeg frame ↵Wim Taymans2008-12-091-2/+21
| | | | | | | | | when it's missing. Original commit message from CVS: * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_process): Add an EOI marker at the end of the jpeg frame when it's missing. Fixes #563056.
* gst/rtp/: Add a jpeg depayloader.Wim Taymans2008-11-141-0/+614
Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_base_init), (gst_rtp_jpeg_depay_class_init), (gst_rtp_jpeg_depay_init), (gst_rtp_jpeg_depay_finalize), (MakeTables), (MakeQuantHeader), (MakeHuffmanHeader), (MakeDRIHeader), (MakeHeaders), (gst_rtp_jpeg_depay_setcaps), (gst_rtp_jpeg_depay_process), (gst_rtp_jpeg_depay_change_state), (gst_rtp_jpeg_depay_plugin_init): * gst/rtp/gstrtpjpegdepay.h: Add a jpeg depayloader. * gst/rtp/gstrtpjpegpay.c: Set the default properties on the payloader to better defaults.