Commit d738b48e authored by emerit's avatar emerit
Browse files

same comment as previous commit

parent 724faab7
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -1410,7 +1410,6 @@ char *create_hrtf_parametric( int32_t *hrtf_size )
            *( (int32_t *) ( hrtf_wptr ) ) = HRTF_READER_RENDERER_BINAURAL_PARAMETRIC;
#else
            *( (int32_t *) ( hrtf_wptr ) ) = HRTF_READER_RENDERER_BINAURAL_PARAMETRIC_ROOM;

#endif
        }
        hrtf_wptr += sizeof( int32_t );
@@ -1555,7 +1554,11 @@ char *create_hrtf_parametric( int32_t *hrtf_size )
    hrtf_wptr = hrtf;

    // Renderer type - we use only parametric room type here to cover both cases
#ifdef FIX_CREND_FIX_POINT_HRTF_FILE_FORMAT
    *( (int32_t *) ( hrtf_wptr ) ) = HRTF_READER_RENDERER_BINAURAL_PARAMETRIC;
#else
    *( (int32_t *) ( hrtf_wptr ) ) = HRTF_READER_RENDERER_BINAURAL_PARAMETRIC_ROOM;
#endif
    hrtf_wptr += sizeof( int32_t );

    // Decoder output format - not relevant parametric binaural renderer
@@ -2315,7 +2318,11 @@ int16_t check_hrtf_data( HRTF_READER_RENDERER_TYPE rend_type, BINAURAL_INPUT_AUD

    if ( rend_type == HRTF_READER_RENDERER_BINAURAL_OBJECTS_TD || rend_type == HRTF_READER_RENDERER_BINAURAL_REVERB_ALL ||
         rend_type == HRTF_READER_RENDERER_BINAURAL_FASTCONV || rend_type == HRTF_READER_RENDERER_BINAURAL_FASTCONV_ROOM ||
#ifdef FIX_CREND_FIX_POINT_HRTF_FILE_FORMAT
         rend_type == HRTF_READER_RENDERER_BINAURAL_PARAMETRIC )
#else
         rend_type == HRTF_READER_RENDERER_BINAURAL_PARAMETRIC || rend_type == HRTF_READER_RENDERER_BINAURAL_PARAMETRIC_ROOM )
#endif
    {
        return 0;
    }