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

  /external/libvpx/libvpx/examples/
decoder_tmpl.c 52 unsigned char file_hdr[IVF_FILE_HDR_SZ]; local
67 if(!(fread(file_hdr, 1, IVF_FILE_HDR_SZ, infile) == IVF_FILE_HDR_SZ
68 && file_hdr[0]=='D' && file_hdr[1]=='K' && file_hdr[2]=='I'
69 && file_hdr[3]=='F'))
  /external/libvpx/libvpx/test/
ivf_video_source.h 60 uint8_t file_hdr[kIvfFileHdrSize]; local
61 ASSERT_EQ(kIvfFileHdrSize, fread(file_hdr, 1, kIvfFileHdrSize, input_file_))
64 ASSERT_TRUE(file_hdr[0] == 'D' && file_hdr[1] == 'K' && file_hdr[2] == 'I'
65 && file_hdr[3] == 'F') << "Input is not an IVF file.";

Completed in 37 milliseconds