Go to the source code of this file.
Functions | |
int | testEndian (void) |
void | initInput (ImageParameters *p_Img, FrameFormat *source, FrameFormat *output) |
void | AllocateFrameMemory (ImageParameters *p_Img, InputParameters *p_Inp, FrameFormat *source) |
void | DeleteFrameMemory (ImageParameters *p_Img) |
int | ReadOneFrame (ImageParameters *p_Img, InputParameters *p_Inp, VideoDataFile *input_file, int FrameNoInFile, int HeaderSize, FrameFormat *source, FrameFormat *output, imgpel **pImage[3]) |
void | PaddAutoCropBorders (FrameFormat output, int img_size_x, int img_size_y, int img_size_x_cr, int img_size_y_cr, imgpel **pImage[3]) |
Definition in file input.h.
void AllocateFrameMemory | ( | ImageParameters * | p_Img, | |
InputParameters * | p_Inp, | |||
FrameFormat * | source | |||
) |
Create Frame Memory buffer.
Definition at line 545 of file input.c.
References no_mem_exit().
void DeleteFrameMemory | ( | ImageParameters * | p_Img | ) |
void initInput | ( | ImageParameters * | p_Img, | |
FrameFormat * | source, | |||
FrameFormat * | output | |||
) |
checks if the System is big- or little-endian
Definition at line 41 of file input.c.
References buf2img_basic(), buf2img_bitshift(), buf2img_endian(), and testEndian().
void PaddAutoCropBorders | ( | FrameFormat | output, | |
int | img_size_x, | |||
int | img_size_y, | |||
int | img_size_x_cr, | |||
int | img_size_y_cr, | |||
imgpel ** | pImage[3] | |||
) |
Padding of automatically added border for picture sizes that are not multiples of macroblock/macroblock pair size.
output | Image dimensions | |
img_size_x | coded image horizontal size (luma) | |
img_size_y | code image vertical size (luma) | |
img_size_x_cr | coded image horizontal size (chroma) | |
img_size_y_cr | code image vertical size (chroma) | |
pImage | image planes |
Definition at line 679 of file input.c.
References YUV400.
int ReadOneFrame | ( | ImageParameters * | p_Img, | |
InputParameters * | p_Inp, | |||
VideoDataFile * | input_file, | |||
int | FrameNoInFile, | |||
int | HeaderSize, | |||
FrameFormat * | source, | |||
FrameFormat * | output, | |||
imgpel ** | pImage[3] | |||
) |
Reads one new frame from file.
p_Img | image encoding parameters for current picture | |
p_Inp | Input configuration parameters | |
input_file | structure containing information (filename, format) about the source file | |
FrameNoInFile | Frame number in the source file | |
HeaderSize | Number of bytes in the source file to be skipped | |
source | source file (on disk) information | |
output | output file (for encoding) information | |
pImage | Image planes |
Definition at line 594 of file input.c.
References deinterleave(), ReadFrameConcatenated(), ReadFrameSeparate(), ReadTIFFImage(), YUV400, and YUV444.
int testEndian | ( | void | ) |