#include "dsputil.h"
#include "mpegvideo.h"
Go to the source code of this file.
Data Structures | |
struct | MJpegContext |
Functions | |
int | ff_mjpeg_encode_init (MpegEncContext *s) |
void | ff_mjpeg_encode_close (MpegEncContext *s) |
void | ff_mjpeg_encode_picture_header (MpegEncContext *s) |
void | ff_mjpeg_encode_picture_trailer (MpegEncContext *s) |
void | ff_mjpeg_encode_stuffing (PutBitContext *pbc) |
void | ff_mjpeg_encode_dc (MpegEncContext *s, int val, uint8_t *huff_size, uint16_t *huff_code) |
void | ff_mjpeg_encode_mb (MpegEncContext *s, DCTELEM block[6][64]) |
Definition in file mjpegenc.h.
void ff_mjpeg_encode_close | ( | MpegEncContext * | s | ) |
void ff_mjpeg_encode_dc | ( | MpegEncContext * | s, | |
int | val, | |||
uint8_t * | huff_size, | |||
uint16_t * | huff_code | |||
) |
Definition at line 351 of file mjpegenc.c.
Referenced by encode_block(), and encode_picture_lossless().
int ff_mjpeg_encode_init | ( | MpegEncContext * | s | ) |
void ff_mjpeg_encode_mb | ( | MpegEncContext * | s, | |
DCTELEM | block[6][64] | |||
) |
void ff_mjpeg_encode_picture_header | ( | MpegEncContext * | s | ) |
Definition at line 197 of file mjpegenc.c.
Referenced by encode_picture(), and encode_picture_lossless().
void ff_mjpeg_encode_picture_trailer | ( | MpegEncContext * | s | ) |
Definition at line 339 of file mjpegenc.c.
Referenced by encode_picture_lossless(), and MPV_encode_picture().
void ff_mjpeg_encode_stuffing | ( | PutBitContext * | pbc | ) |
Definition at line 332 of file mjpegenc.c.
Referenced by ff_mjpeg_encode_picture_trailer(), and write_slice_end().