No focus pixels -- Yay! Got a similar sample from the 100D and it does show focus pixels so maybe you just got "lucky" and shot a lighting situation that doesn't show the focus pixels. This is actually happens quite a bit and makes hunting down all of the possible focus pixels a challenge.
Found some interesting stuff with these 1x3 sample. I'm a little lost as far as figuring out which app is doing the "correct" thing because there is nothing to guide us in this image. I guess you can say that there's no image in this image.
mlv_dump -v
Res: 1736x1120
...
raw_capture_info:
sensor res 5184x3456
sensor crop 1.62 (APS-C)
sampling 1x3 (read every line, bin 3 columns)
Note that the sensor resolution is 5184 pixels wide but the sampling bins every 3 columns so the maximum width should logically be 5184/3 = 1728. Well, there's an area that normally gets cropped so the sensor resolution is actually a bit more -- 5208.
Another thing to watch out for is that while resolution is written as width by height, the sampling is written as height by width. We had a conversation about this on another topic:
I was used to Octave notation (line/column) when writing the binning notation (5x3 etc), but relating these to resolution seems more logical; too late to swap them?
Probably not necessary. Besides, it makes the "desqueezing factor" super easy to figure out -- 5/3 = 1.67x
So, for 1x3 sampling the "desqueezing factor" should be 1/3 = 0.3333...
Let's see what some of the MLV apps are doing with 1x3 footage when exporting to DNG.
mlv_dumpSoftware : MLV_DUMP CDNG
Default Scale : 1 1
Reel Name : M01-0745.MLV
Image Size : 1736x1120
dcraw -T (1736 × 1120)

Adobe Camera Raw (1736 × 1120)

Not that exciting yet. There's a difference between the way ACR and dcraw rendered the DNG file but that's expected.
MLVFSI recently updated my Mac to Mojave and it wasn't working when I was checking out that previous file. After updating osxfuse to 3.8.2 it is working again.
Software : MLVFS
Default Scale : 1 1
Reel Name : /M01-0745.MLV
Image Size : 1736x1120
dcraw -T (1736 × 1120)

Adobe Camera Raw (1736 × 1120)

No surprises there.
MLV AppSoftware : MLV App
Default Scale : 1 0.3333333333
Reel Name : M01-0745
Image Size : 1736x1120
It makes sense that MLV App shows the correct Default Scale because some of the developers working on this app are also experimenting with the new crop_rec resolutions. This app also allows you to save to various types of image files so you don't have to create DNG files to work with. Let's export a tiff file from MLV App
MLV App (1736 × 373)

Let's take a DNG file exported from MLV App and run it through dcraw and ACR.
dcraw -T (5208 × 1120)

What's up with that file size? Instead of reducing the height dcraw increased the width to get the correct aspect ratio.
Adobe Camera Raw (1736 × 373)
