FFmpeg
|
#include "avformat.h"
#include "avio_internal.h"
#include "rtpdec.h"
#include "rtpdec_formats.h"
#include "libavutil/intreadwrite.h"
#include "libavcodec/jpegtables.h"
#include "libavcodec/mjpeg.h"
#include "libavcodec/bytestream.h"
Go to the source code of this file.
Data Structures | |
struct | PayloadContext |
RTP/JPEG specific private data. More... | |
Functions | |
static void | jpeg_close_context (PayloadContext *jpeg) |
static int | jpeg_create_huffman_table (PutByteContext *p, int table_class, int table_id, const uint8_t *bits_table, const uint8_t *value_table) |
static void | jpeg_put_marker (PutByteContext *pbc, int code) |
static int | jpeg_create_header (uint8_t *buf, int size, uint32_t type, uint32_t w, uint32_t h, const uint8_t *qtable, int nb_qtable, int dri) |
static void | create_default_qtables (uint8_t *qtables, uint8_t q) |
static int | jpeg_parse_packet (AVFormatContext *ctx, PayloadContext *jpeg, AVStream *st, AVPacket *pkt, uint32_t *timestamp, const uint8_t *buf, int len, uint16_t seq, int flags) |
Variables | |
static const uint8_t | default_quantizers [128] |
const RTPDynamicProtocolHandler | ff_jpeg_dynamic_handler |
|
static |
Definition at line 64 of file rtpdec_jpeg.c.
|
static |
Definition at line 69 of file rtpdec_jpeg.c.
Referenced by jpeg_create_header().
|
static |
Definition at line 88 of file rtpdec_jpeg.c.
Referenced by jpeg_create_header().
|
static |
Definition at line 94 of file rtpdec_jpeg.c.
Referenced by jpeg_parse_packet().
|
static |
Definition at line 192 of file rtpdec_jpeg.c.
Referenced by jpeg_parse_packet().
|
static |
Definition at line 214 of file rtpdec_jpeg.c.
|
static |
Definition at line 42 of file rtpdec_jpeg.c.
Referenced by create_default_qtables().
const RTPDynamicProtocolHandler ff_jpeg_dynamic_handler |
Definition at line 382 of file rtpdec_jpeg.c.