30 #include <schroedinger/schro.h>
31 #include <schroedinger/schrodebug.h>
32 #include <schroedinger/schrovideoformat.h>
86 for (idx = 0; idx < num_formats; ++idx) {
88 p_schro_params->
format->chroma_format =
95 "This codec currently only supports planar YUV 4:2:0, 4:2:2"
96 " and 4:4:4 formats.\n");
104 SchroVideoFormatEnum
preset;
110 p_schro_params->
encoder = schro_encoder_new();
112 if (!p_schro_params->
encoder) {
114 "Unrecoverable Error: schro_encoder_new failed. ");
121 schro_encoder_get_video_format(p_schro_params->
encoder);
122 schro_video_format_set_std_video_format(p_schro_params->
format, preset);
130 p_schro_params->
format->colour_primaries = SCHRO_COLOUR_PRIMARY_HDTV;
132 p_schro_params->
format->colour_primaries = SCHRO_COLOUR_PRIMARY_SDTV_625;
134 p_schro_params->
format->colour_primaries = SCHRO_COLOUR_PRIMARY_SDTV_525;
138 p_schro_params->
format->colour_matrix = SCHRO_COLOUR_MATRIX_HDTV;
140 p_schro_params->
format->colour_matrix = SCHRO_COLOUR_MATRIX_SDTV;
144 p_schro_params->
format->transfer_function = SCHRO_TRANSFER_CHAR_TV_GAMMA;
150 "This codec currently supports only planar YUV 4:2:0, 4:2:2"
151 " and 4:4:4 formats.\n");
167 schro_encoder_setting_set_double(p_schro_params->
encoder,
169 SCHRO_ENCODER_GOP_INTRA_ONLY);
172 schro_encoder_setting_set_double(p_schro_params->
encoder,
173 "enable_noarith", 1);
175 schro_encoder_setting_set_double(p_schro_params->
encoder,
178 p_schro_params->
dts = -1;
185 schro_encoder_setting_set_double(p_schro_params->
encoder,
187 SCHRO_ENCODER_RATE_CONTROL_LOSSLESS);
190 schro_encoder_setting_set_double(p_schro_params->
encoder,
192 SCHRO_ENCODER_RATE_CONTROL_CONSTANT_QUALITY);
197 schro_encoder_setting_set_double(p_schro_params->
encoder,
201 schro_encoder_setting_set_double(p_schro_params->
encoder,
203 SCHRO_ENCODER_RATE_CONTROL_CONSTANT_BITRATE);
205 schro_encoder_setting_set_double(p_schro_params->
encoder,
212 schro_encoder_setting_set_double(p_schro_params->
encoder,
213 "interlaced_coding", 1);
215 schro_encoder_setting_set_double(p_schro_params->
encoder,
"open_gop",
220 schro_video_format_set_std_signal_range(p_schro_params->
format,
221 SCHRO_SIGNAL_RANGE_8BIT_VIDEO);
224 schro_encoder_set_video_format(p_schro_params->
encoder,
228 schro_debug_set_level(avctx->
debug);
230 schro_encoder_start(p_schro_params->
encoder);
241 SchroFrame *in_frame;
250 in_frame->components[0].data,
269 SchroEncoder *encoder = p_schro_params->
encoder;
272 SchroBuffer *enc_buf;
273 int presentation_frame;
275 int last_frame_in_sequence = 0;
281 schro_encoder_end_of_stream(encoder);
290 schro_encoder_push_frame(encoder, in_frame);
299 SchroStateEnum
state;
300 state = schro_encoder_wait(encoder);
302 case SCHRO_STATE_HAVE_BUFFER:
303 case SCHRO_STATE_END_OF_STREAM:
304 enc_buf = schro_encoder_pull(encoder, &presentation_frame);
305 if (enc_buf->length <= 0)
307 parse_code = enc_buf->data[4];
315 enc_buf->length)) < 0) {
321 enc_buf->data, enc_buf->length);
325 if (state == SCHRO_STATE_END_OF_STREAM) {
330 if (!SCHRO_PARSE_CODE_IS_PICTURE(parse_code)) {
331 schro_buffer_unref(enc_buf);
342 if (SCHRO_PARSE_CODE_IS_INTRA(parse_code) &&
343 SCHRO_PARSE_CODE_IS_REFERENCE(parse_code))
355 schro_buffer_unref(enc_buf);
359 case SCHRO_STATE_NEED_FRAME:
363 case SCHRO_STATE_AGAIN:
376 last_frame_in_sequence = 1;
383 pkt_size = p_frame_output->
size;
384 if (last_frame_in_sequence && p_schro_params->
enc_buf_size > 0)
396 pkt->
dts = p_schro_params->
dts++;
397 enc_size = p_frame_output->
size;
401 if (last_frame_in_sequence && p_schro_params->
enc_buf_size > 0) {
402 memcpy(pkt->
data + enc_size, p_schro_params->
enc_buf,
425 schro_encoder_free(p_schro_params->
encoder);
446 .
name =
"libschroedinger",
also ITU-R BT1361 / IEC 61966-2-4 xvYCC709 / SMPTE RP177 Annex B
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size)
Check AVPacket size and/or allocate data.
This structure describes decoded (raw) audio or video data.
ptrdiff_t const GLvoid * data
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
AVFrame * coded_frame
the picture in the bitstream
static av_cold int init(AVCodecContext *avctx)
uint16_t key_frame
key frame flag.
SchroFrame * ff_create_schro_frame(AVCodecContext *avctx, SchroFrameFormat schro_frame_fmt)
Create a Schro frame based on the dimensions and frame format passed.
also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM / IEC 61966-2-4 xvYCC601 ...
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
int avpicture_layout(const AVPicture *src, enum AVPixelFormat pix_fmt, int width, int height, unsigned char *dest, int dest_size)
Copy pixel data from an AVPicture into a buffer.
libschroedinger encoder private data
static const struct @64 schro_pixel_format_map[]
data structures common to libschroedinger decoder and encoder
enum AVPixelFormat ff_pix_fmt
Macro definitions for various function/variable attributes.
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
static void libschroedinger_free_frame(void *data)
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
uint32_t frame_num
encoded frame number.
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
int av_reallocp(void *ptr, size_t size)
Allocate or reallocate a block of memory.
contains a single encoded frame returned from Dirac or Schroedinger
uint8_t * p_encbuf
encoded frame data
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
static int set_chroma_format(AVCodecContext *avctx)
Works out Schro-compatible chroma format.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int has_b_frames
Size of the frame reordering buffer in the decoder.
SchroEncoder * encoder
Schroedinger encoder handle.
#define CODEC_FLAG_INTERLACED_ME
interlaced motion estimation
SchroFrameFormat frame_format
Schroedinger frame format.
#define CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
void * ff_schro_queue_pop(FFSchroQueue *queue)
Return the first element in the queue.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
also ITU-R BT1361 / IEC 61966-2-4 / SMPTE RP177 Annex B
#define CODEC_FLAG_QSCALE
Use fixed qscale.
simple assert() macros that are a bit more flexible than ISO C assert().
const char * name
Name of the codec implementation.
FFSchroQueue enc_frame_queue
queue storing encoded frames
#define FF_CODER_TYPE_VLC
SchroVideoFormat * format
Schroedinger video format.
Libavcodec external API header.
int flags
A combination of AV_PKT_FLAG values.
int ff_get_schro_frame_format(SchroChromaFormat schro_pix_fmt, SchroFrameFormat *schro_frame_fmt)
Sets the Schroedinger frame format corresponding to the Schro chroma format passed.
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
int enc_buf_size
Size of encoder buffer.
int bit_rate
the average bitrate
int ff_schro_queue_push_back(FFSchroQueue *queue, void *p_data)
Add an element to the end of the queue.
void ff_schro_queue_free(FFSchroQueue *queue, void(*free_func)(void *))
Free the queue resources.
av_cold void ff_schro_queue_init(FFSchroQueue *queue)
Initialise the queue.
A simple queue implementation used in libschroedinger.
int width
picture width / height.
static av_cold int libschroedinger_encode_init(AVCodecContext *avctx)
also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
static int libschroedinger_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
int eos_signalled
end of sequence signalled
main external API structure.
unsigned char * enc_buf
buffer to store encoder output before writing it to the frame queue
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
enum AVColorSpace colorspace
YUV colorspace type.
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
SchroVideoFormatEnum ff_get_schro_video_format_preset(AVCodecContext *avctx)
Returns the video format preset matching the input video dimensions and time base.
int eos_pulled
end of sequence pulled
#define CODEC_FLAG_CLOSED_GOP
int global_quality
Global quality for codecs which cannot change it per frame.
static SchroFrame * libschroedinger_frame_from_data(AVCodecContext *avctx, const AVFrame *frame)
int gop_size
the number of pictures in a group of pictures, or 0 for intra_only
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
common internal api header.
AVCodec ff_libschroedinger_encoder
static int libschroedinger_encode_close(AVCodecContext *avctx)
uint32_t size
encoded frame size
int avpicture_get_size(enum AVPixelFormat pix_fmt, int width, int height)
Calculate the size in bytes that a picture of the given width and height would occupy if stored in th...
int key_frame
1 -> keyframe, 0-> not
#define FF_QP2LAMBDA
factor to convert from H.263 QP to lambda
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
also ITU-R BT601-6 525 / ITU-R BT1358 525 / ITU-R BT1700 NTSC
AVPixelFormat
Pixel format.
This structure stores compressed data.
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...