@@ -165,7 +165,7 @@ OIIO_EXPORT const char*
165165r3d_imageio_library_version ()
166166{
167167 // Note: SDK version can differ from the actual library loaded
168- return " R3D 8.5. 1" ;
168+ return " R3D 9.0.0 Beta 1" ;
169169}
170170
171171OIIO_EXPORT ImageInput*
@@ -174,7 +174,7 @@ r3d_input_imageio_create()
174174 return new R3dInput;
175175}
176176
177- OIIO_EXPORT const char * r3d_input_extensions[] = { " r3d" , nullptr };
177+ OIIO_EXPORT const char * r3d_input_extensions[] = { " r3d" , " nev " , nullptr };
178178
179179OIIO_PLUGIN_EXPORTS_END
180180
@@ -838,8 +838,6 @@ R3dInput::open(const std::string& name, ImageSpec& newspec,
838838 // Interleaved RGB decoding in 16-bits per pixel
839839 // m_async_decompress_job.PixelType
840840 // = R3DSDK::PixelType_16Bit_RGB_Interleaved;
841- // m_async_decompress_job.BytesPerRow = m_channels * width
842- // * sizeof(uint16_t);
843841
844842 // m_async_decompress_job.ImageProcessing = NULL;
845843 // m_async_decompress_job.HdrProcessing = NULL;
@@ -857,7 +855,6 @@ R3dInput::open(const std::string& name, ImageSpec& newspec,
857855
858856 // Interleaved RGB decoding in 16-bits per pixel
859857 m_job.PixelType = R3DSDK::PixelType_16Bit_RGB_Interleaved;
860- m_job.BytesPerRow = m_channels * width * sizeof (uint16_t );
861858
862859 m_job.ImageProcessing = NULL ;
863860 m_job.HdrProcessing = NULL ;
0 commit comments