diff options
| author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-06-26 11:35:31 +0200 | 
|---|---|---|
| committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-06-26 11:35:31 +0200 | 
| commit | 918b7a850e29a66d22a3680714c61af56c0c1c98 (patch) | |
| tree | c24135583de01ffb210db6e067d32bbe3cc06e31 /src/AVTInput.cpp | |
| parent | 1d57e30b032d8b68ca2a929d24d1ff82c529ca5a (diff) | |
| download | ODR-SourceCompanion-918b7a850e29a66d22a3680714c61af56c0c1c98.tar.gz ODR-SourceCompanion-918b7a850e29a66d22a3680714c61af56c0c1c98.tar.bz2 ODR-SourceCompanion-918b7a850e29a66d22a3680714c61af56c0c1c98.zip | |
Remove unused _dump function
Diffstat (limited to 'src/AVTInput.cpp')
| -rw-r--r-- | src/AVTInput.cpp | 9 | 
1 files changed, 0 insertions, 9 deletions
| diff --git a/src/AVTInput.cpp b/src/AVTInput.cpp index 0e5b669..3bf1bd6 100644 --- a/src/AVTInput.cpp +++ b/src/AVTInput.cpp @@ -42,15 +42,6 @@  uint8_t STI_FSync0[3] = { 0x1F, 0x90, 0xCA };  uint8_t STI_FSync1[3] = { 0xE0, 0x6F, 0x35 }; -static void _dump(const uint8_t* buf, int size) -{ -    for (int i = 0 ; i < size ; i++) { -        PRINTF("%02X ", buf[i]); -        if( (i+1) % 16 == 0 ) PRINTF("\n"); -    } -    if (size % 16 != 0 ) PRINTF("\n"); -} -  static uint32_t unpack2(const uint8_t* buf)  {      return (buf[0] << 8) | buf[1]; | 
