#include "avcodec.h"
#include "dsputil.h"
#include "mpegvideo.h"
#include "mjpeg.h"
#include "mjpegenc.h"
Go to the source code of this file.
Defines | |
#define | V_MAX 2 |
Functions | |
av_cold int | ff_mjpeg_encode_init (MpegEncContext *s) |
void | ff_mjpeg_encode_close (MpegEncContext *s) |
static int | put_huffman_table (MpegEncContext *s, int table_class, int table_id, const uint8_t *bits_table, const uint8_t *value_table) |
static void | jpeg_table_header (MpegEncContext *s) |
static void | jpeg_put_comments (MpegEncContext *s) |
void | ff_mjpeg_encode_picture_header (MpegEncContext *s) |
static void | escape_FF (MpegEncContext *s, int start) |
void | ff_mjpeg_encode_stuffing (MpegEncContext *s) |
void | ff_mjpeg_encode_picture_trailer (MpegEncContext *s) |
void | ff_mjpeg_encode_dc (MpegEncContext *s, int val, uint8_t *huff_size, uint16_t *huff_code) |
static void | encode_block (MpegEncContext *s, DCTELEM *block, int n) |
void | ff_mjpeg_encode_mb (MpegEncContext *s, DCTELEM block[6][64]) |
static int | amv_encode_picture (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic_arg, int *got_packet) |
Definition in file mjpegenc.c.
#define V_MAX 2 |
static int amv_encode_picture | ( | AVCodecContext * | avctx, | |
AVPacket * | pkt, | |||
const AVFrame * | pic_arg, | |||
int * | got_packet | |||
) | [static] |
Definition at line 478 of file mjpegenc.c.
static void encode_block | ( | MpegEncContext * | s, | |
DCTELEM * | block, | |||
int | n | |||
) | [static] |
Definition at line 401 of file mjpegenc.c.
static void escape_FF | ( | MpegEncContext * | s, | |
int | start | |||
) | [static] |
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 379 of file mjpegenc.c.
Referenced by encode_block(), and encode_picture_lossless().
av_cold 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 205 of file mjpegenc.c.
Referenced by encode_picture(), and encode_picture_lossless().
void ff_mjpeg_encode_picture_trailer | ( | MpegEncContext * | s | ) |
Definition at line 370 of file mjpegenc.c.
Referenced by encode_picture_lossless(), and ff_MPV_encode_picture().
void ff_mjpeg_encode_stuffing | ( | MpegEncContext * | s | ) |
Definition at line 351 of file mjpegenc.c.
Referenced by encode_picture_lossless(), and write_slice_end().
static void jpeg_put_comments | ( | MpegEncContext * | s | ) | [static] |
static void jpeg_table_header | ( | MpegEncContext * | s | ) | [static] |