Remove two lines of duplicate code in avifJPEGRead
diff --git a/apps/shared/avifjpeg.c b/apps/shared/avifjpeg.c
index 3469cdd..9971a43 100644
--- a/apps/shared/avifjpeg.c
+++ b/apps/shared/avifjpeg.c
@@ -292,9 +292,6 @@
         cinfo.out_color_space = JCS_RGB;
         jpeg_start_decompress(&cinfo);
 
-        avif->width = cinfo.output_width;
-        avif->height = cinfo.output_height;
-
         int row_stride = cinfo.output_width * cinfo.output_components;
         JSAMPARRAY buffer = (*cinfo.mem->alloc_sarray)((j_common_ptr)&cinfo, JPOOL_IMAGE, row_stride, 1);