HomeSort by relevance Sort by last modified time
    Searched refs:max_size_in_dword (Results 1 - 6 of 6) sorted by null

  /hardware/intel/common/libmix/videoencoder/
bitstream.h 26 int max_size_in_dword; member in struct:bitstream
43 bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING;
44 bs->buffer = (unsigned int*)calloc(bs->max_size_in_dword * sizeof(int), 1);
77 if (pos + 1 == bs->max_size_in_dword) {
78 bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING;
79 bs->buffer = (unsigned int*)realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int));
  /hardware/intel/common/libva/test/encode/
mpeg2enc.c 158 int max_size_in_dword; member in struct:__bitstream
177 bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING;
178 bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1);
216 if (pos + 1 == bs->max_size_in_dword) {
217 bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING;
218 bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int));
    [all...]
mpeg2vaenc.c 158 int max_size_in_dword; member in struct:__bitstream
177 bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING;
178 bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1);
216 if (pos + 1 == bs->max_size_in_dword) {
217 bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING;
218 bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int));
    [all...]
avcenc.c 731 int max_size_in_dword; member in struct:__bitstream
768 bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING;
769 bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1);
804 if (pos + 1 == bs->max_size_in_dword) {
805 bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING;
806 bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int));
    [all...]
h264encode.c 167 int max_size_in_dword; member in struct:__bitstream
186 bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING;
187 bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1);
222 if (pos + 1 == bs->max_size_in_dword) {
223 bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING;
224 bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int));
    [all...]
  /hardware/intel/common/libva/test/transcode/
mpeg2transcode.cpp 2438 int max_size_in_dword; member in struct:__bitstream
    [all...]

Completed in 220 milliseconds