/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * v4l2_subdevice_test.cpp - VIMC-based V4L2 subdevice test
 */

#include <iostream>
#include <string.h>
#include <sys/stat.h>

#include "device_enumerator.h"
#include "media_device.h"
#include "v4l2_subdevice.h"
#include "v4l2_subdevice_test.h"

using namespace std;
using namespace libcamera;

/*
 * This test runs on vimc media device. For a description of vimc, in the
 * context of libcamera testing, please refer to
 * 'test/media_device/media_device_link_test.cpp' file.
 *
 * If the vimc module is not loaded, the test gets skipped.
 */

int V4L2SubdeviceTest::init()
{
	enumerator_ = DeviceEnumerator::create();
	if (!enumerator_) {
		cerr << "Failed to create device enumerator" << endl;
		return TestFail;
	}

	if (enumerator_->enumerate()) {
		cerr << "Failed to enumerate media devices" << endl;
		return TestFail;
	}

	DeviceMatch dm("vimc");
	media_ = enumerator_->search(dm);
	if (!media_) {
		cerr << "Unable to find \'vimc\' media device node" << endl;
		return TestSkip;
	}

	MediaEntity *videoEntity = media_->getEntityByName("Scaler");
	if (!videoEntity) {
		cerr << "Unable to find media entity 'Scaler'" << endl;
		return TestFail;
	}

	scaler_ = new V4L2Subdevice(videoEntity);
	if (scaler_->open()) {
		cerr << "Unable to open video subdevice "
		     << scaler_->entity()->deviceNode() << endl;
		return TestSkip;
	}

	return 0;
}

void V4L2SubdeviceTest::cleanup()
{
	delete scaler_;
}
h=v0.1.0&amp;id=c85b6c849f61349129c2ac549017316f60ae5e07'>tree</a><a href='/libcamera/libcamera.git/commit/src/android/jpeg/thumbnailer.cpp?h=v0.1.0&amp;id=c85b6c849f61349129c2ac549017316f60ae5e07'>commit</a><a href='/libcamera/libcamera.git/diff/src/android/jpeg/thumbnailer.cpp?h=v0.1.0&amp;id=c85b6c849f61349129c2ac549017316f60ae5e07'>diff</a></td><td class='form'><form class='right' method='get' action='/libcamera/libcamera.git/log/src/android/jpeg/thumbnailer.cpp'>
<input type='hidden' name='h' value='v0.1.0'/><input type='hidden' name='id' value='c85b6c849f61349129c2ac549017316f60ae5e07'/><select name='qt'>
<option value='grep'>log msg</option>
<option value='author'>author</option>
<option value='committer'>committer</option>
<option value='range'>range</option>
</select>
<input class='txt' type='search' size='10' name='q' value=''/>
<input type='submit' value='search'/>
</form>
</td></tr></table>
<div class='path'>path: <a href='/libcamera/libcamera.git/tree/?h=v0.1.0&amp;id=c85b6c849f61349129c2ac549017316f60ae5e07'>root</a>/<a href='/libcamera/libcamera.git/tree/src?h=v0.1.0&amp;id=c85b6c849f61349129c2ac549017316f60ae5e07'>src</a>/<a href='/libcamera/libcamera.git/tree/src/android?h=v0.1.0&amp;id=c85b6c849f61349129c2ac549017316f60ae5e07'>android</a>/<a href='/libcamera/libcamera.git/tree/src/android/jpeg?h=v0.1.0&amp;id=c85b6c849f61349129c2ac549017316f60ae5e07'>jpeg</a>/<a href='/libcamera/libcamera.git/tree/src/android/jpeg/thumbnailer.cpp?h=v0.1.0&amp;id=c85b6c849f61349129c2ac549017316f60ae5e07'>thumbnailer.cpp</a></div><div class='content'>blob: f709d3435d9cee527367c0bdc4c93fe7e91a52c8 (<a href='/libcamera/libcamera.git/plain/src/android/jpeg/thumbnailer.cpp?h=v0.1.0&amp;id=c85b6c849f61349129c2ac549017316f60ae5e07'>plain</a>)
<table summary='blob content' class='blob'>
<tr><td class='linenumbers'><pre><a id='n1' href='#n1'>1</a>
<a id='n2' href='#n2'>2</a>
<a id='n3' href='#n3'>3</a>
<a id='n4' href='#n4'>4</a>
<a id='n5' href='#n5'>5</a>
<a id='n6' href='#n6'>6</a>
<a id='n7' href='#n7'>7</a>
<a id='n8' href='#n8'>8</a>
<a id='n9' href='#n9'>9</a>
<a id='n10' href='#n10'>10</a>
<a id='n11' href='#n11'>11</a>
<a id='n12' href='#n12'>12</a>
<a id='n13' href='#n13'>13</a>
<a id='n14' href='#n14'>14</a>
<a id='n15' href='#n15'>15</a>
<a id='n16' href='#n16'>16</a>
<a id='n17' href='#n17'>17</a>
<a id='n18' href='#n18'>18</a>
<a id='n19' href='#n19'>19</a>
<a id='n20' href='#n20'>20</a>
<a id='n21' href='#n21'>21</a>
<a id='n22' href='#n22'>22</a>
<a id='n23' href='#n23'>23</a>
<a id='n24' href='#n24'>24</a>
<a id='n25' href='#n25'>25</a>
<a id='n26' href='#n26'>26</a>
<a id='n27' href='#n27'>27</a>
<a id='n28' href='#n28'>28</a>
<a id='n29' href='#n29'>29</a>
<a id='n30' href='#n30'>30</a>
<a id='n31' href='#n31'>31</a>
<a id='n32' href='#n32'>32</a>
<a id='n33' href='#n33'>33</a>
<a id='n34' href='#n34'>34</a>
<a id='n35' href='#n35'>35</a>
<a id='n36' href='#n36'>36</a>
<a id='n37' href='#n37'>37</a>
<a id='n38' href='#n38'>38</a>
<a id='n39' href='#n39'>39</a>
<a id='n40' href='#n40'>40</a>
<a id='n41' href='#n41'>41</a>
<a id='n42' href='#n42'>42</a>
<a id='n43' href='#n43'>43</a>
<a id='n44' href='#n44'>44</a>
<a id='n45' href='#n45'>45</a>
<a id='n46' href='#n46'>46</a>
<a id='n47' href='#n47'>47</a>
<a id='n48' href='#n48'>48</a>
<a id='n49' href='#n49'>49</a>
<a id='n50' href='#n50'>50</a>
<a id='n51' href='#n51'>51</a>
<a id='n52' href='#n52'>52</a>
<a id='n53' href='#n53'>53</a>
<a id='n54' href='#n54'>54</a>
<a id='n55' href='#n55'>55</a>
<a id='n56' href='#n56'>56</a>
<a id='n57' href='#n57'>57</a>
<a id='n58' href='#n58'>58</a>
<a id='n59' href='#n59'>59</a>
<a id='n60' href='#n60'>60</a>
<a id='n61' href='#n61'>61</a>
<a id='n62' href='#n62'>62</a>
<a id='n63' href='#n63'>63</a>
<a id='n64' href='#n64'>64</a>
<a id='n65' href='#n65'>65</a>
<a id='n66' href='#n66'>66</a>
<a id='n67' href='#n67'>67</a>
<a id='n68' href='#n68'>68</a>
<a id='n69' href='#n69'>69</a>
<a id='n70' href='#n70'>70</a>
<a id='n71' href='#n71'>71</a>
<a id='n72' href='#n72'>72</a>
<a id='n73' href='#n73'>73</a>
<a id='n74' href='#n74'>74</a>
<a id='n75' href='#n75'>75</a>
<a id='n76' href='#n76'>76</a>
<a id='n77' href='#n77'>77</a>
<a id='n78' href='#n78'>78</a>
<a id='n79' href='#n79'>79</a>
<a id='n80' href='#n80'>80</a>
<a id='n81' href='#n81'>81</a>
<a id='n82' href='#n82'>82</a>
<a id='n83' href='#n83'>83</a>
<a id='n84' href='#n84'>84</a>
<a id='n85' href='#n85'>85</a>
<a id='n86' href='#n86'>86</a>
<a id='n87' href='#n87'>87</a>
<a id='n88' href='#n88'>88</a>
<a id='n89' href='#n89'>89</a>
<a id='n90' href='#n90'>90</a>
<a id='n91' href='#n91'>91</a>
<a id='n92' href='#n92'>92</a>
<a id='n93' href='#n93'>93</a>
</pre></td>
<td class='lines'><pre><code><span class="hl com">/* SPDX-License-Identifier: LGPL-2.1-or-later */</span>
<span class="hl com">/*</span>
<span class="hl com"> * Copyright (C) 2020, Google Inc.</span>
<span class="hl com"> *</span>
<span class="hl com"> * thumbnailer.cpp - Simple image thumbnailer</span>
<span class="hl com"> */</span>

<span class="hl ppc">#include</span> <span class="hl pps">&quot;thumbnailer.h&quot;</span><span class="hl ppc"></span>

<span class="hl ppc">#include &lt;libcamera/formats.h&gt;</span>

<span class="hl ppc">#include</span> <span class="hl pps">&quot;libcamera/internal/log.h&quot;</span><span class="hl ppc"></span>

<span class="hl kwa">using namespace</span> libcamera<span class="hl opt">;</span>

<span class="hl kwd">LOG_DEFINE_CATEGORY</span><span class="hl opt">(</span>Thumbnailer<span class="hl opt">)</span>

<span class="hl kwc">Thumbnailer</span><span class="hl opt">::</span><span class="hl kwd">Thumbnailer</span><span class="hl opt">()</span>
	<span class="hl opt">:</span> <span class="hl kwd">valid_</span><span class="hl opt">(</span><span class="hl kwa">false</span><span class="hl opt">)</span>
<span class="hl opt">{</span>
<span class="hl opt">}</span>

<span class="hl kwb">void</span> <span class="hl kwc">Thumbnailer</span><span class="hl opt">::</span><span class="hl kwd">configure</span><span class="hl opt">(</span><span class="hl kwb">const</span> Size <span class="hl opt">&amp;</span>sourceSize<span class="hl opt">,</span> PixelFormat pixelFormat<span class="hl opt">)</span>
<span class="hl opt">{</span>
	sourceSize_ <span class="hl opt">=</span> sourceSize<span class="hl opt">;</span>
	pixelFormat_ <span class="hl opt">=</span> pixelFormat<span class="hl opt">;</span>

	<span class="hl kwa">if</span> <span class="hl opt">(</span>pixelFormat_ <span class="hl opt">!=</span> <span class="hl kwc">formats</span><span class="hl opt">::</span>NV12<span class="hl opt">) {</span>
		<span class="hl kwd">LOG</span><span class="hl opt">(</span>Thumbnailer<span class="hl opt">,</span> Error<span class="hl opt">)</span>
			<span class="hl opt">&lt;&lt;</span> <span class="hl str">&quot;Failed to configure: Pixel Format &quot;</span>
			<span class="hl opt">&lt;&lt;</span> pixelFormat_<span class="hl opt">.</span><span class="hl kwd">toString</span><span class="hl opt">() &lt;&lt;</span> <span class="hl str">&quot; unsupported.&quot;</span><span class="hl opt">;</span>
		<span class="hl kwa">return</span><span class="hl opt">;</span>
	<span class="hl opt">}</span>

	valid_ <span class="hl opt">=</span> <span class="hl kwa">true</span><span class="hl opt">;</span>
<span class="hl opt">}</span>

<span class="hl kwb">void</span> <span class="hl kwc">Thumbnailer</span><span class="hl opt">::</span><span class="hl kwd">createThumbnail</span><span class="hl opt">(</span><span class="hl kwb">const</span> FrameBuffer <span class="hl opt">&amp;</span>source<span class="hl opt">,</span>
				  <span class="hl kwb">const</span> Size <span class="hl opt">&amp;</span>targetSize<span class="hl opt">,</span>
				  <span class="hl kwc">std</span><span class="hl opt">::</span>vector<span class="hl opt">&lt;</span><span class="hl kwb">unsigned char</span><span class="hl opt">&gt; *</span>destination<span class="hl opt">)</span>
<span class="hl opt">{</span>
	MappedFrameBuffer <span class="hl kwd">frame</span><span class="hl opt">(&amp;</span>source<span class="hl opt">,</span> PROT_READ<span class="hl opt">);</span>
	<span class="hl kwa">if</span> <span class="hl opt">(!</span>frame<span class="hl opt">.</span><span class="hl kwd">isValid</span><span class="hl opt">()) {</span>
		<span class="hl kwd">LOG</span><span class="hl opt">(</span>Thumbnailer<span class="hl opt">,</span> Error<span class="hl opt">)</span>
			<span class="hl opt">&lt;&lt;</span> <span class="hl str">&quot;Failed to map FrameBuffer : &quot;</span>
			<span class="hl opt">&lt;&lt;</span> <span class="hl kwd">strerror</span><span class="hl opt">(</span>frame<span class="hl opt">.</span><span class="hl kwd">error</span><span class="hl opt">());</span>
		<span class="hl kwa">return</span><span class="hl opt">;</span>
	<span class="hl opt">}</span>

	<span class="hl kwa">if</span> <span class="hl opt">(!</span>valid_<span class="hl opt">) {</span>
		<span class="hl kwd">LOG</span><span class="hl opt">(</span>Thumbnailer<span class="hl opt">,</span> Error<span class="hl opt">) &lt;&lt;</span> <span class="hl str">&quot;Config is unconfigured or invalid.&quot;</span><span class="hl opt">;</span>
		<span class="hl kwa">return</span><span class="hl opt">;</span>
	<span class="hl opt">}</span>

	<span class="hl kwb">const unsigned int</span> sw <span class="hl opt">=</span> sourceSize_<span class="hl opt">.</span>width<span class="hl opt">;</span>
	<span class="hl kwb">const unsigned int</span> sh <span class="hl opt">=</span> sourceSize_<span class="hl opt">.</span>height<span class="hl opt">;</span>
	<span class="hl kwb">const unsigned int</span> tw <span class="hl opt">=</span> targetSize<span class="hl opt">.</span>width<span class="hl opt">;</span>
	<span class="hl kwb">const unsigned int</span> th <span class="hl opt">=</span> targetSize<span class="hl opt">.</span>height<span class="hl opt">;</span>

	<span class="hl kwd">ASSERT</span><span class="hl opt">(</span>tw <span class="hl opt">%</span> <span class="hl num">2</span> <span class="hl opt">==</span> <span class="hl num">0</span> <span class="hl opt">&amp;&amp;</span> th <span class="hl opt">%</span> <span class="hl num">2</span> <span class="hl opt">==</span> <span class="hl num">0</span><span class="hl opt">);</span>

	<span class="hl com">/* Image scaling block implementing nearest-neighbour algorithm. */</span>
	<span class="hl kwb">unsigned char</span> <span class="hl opt">*</span>src <span class="hl opt">=</span> <span class="hl kwa">static_cast</span><span class="hl opt">&lt;</span><span class="hl kwb">unsigned char</span> <span class="hl opt">*&gt;(</span>frame<span class="hl opt">.</span><span class="hl kwd">maps</span><span class="hl opt">()[</span><span class="hl num">0</span><span class="hl opt">].</span><span class="hl kwd">data</span><span class="hl opt">());</span>
	<span class="hl kwb">unsigned char</span> <span class="hl opt">*</span>srcC <span class="hl opt">=</span> src <span class="hl opt">+</span> sh <span class="hl opt">*</span> sw<span class="hl opt">;</span>
	<span class="hl kwb">unsigned char</span> <span class="hl opt">*</span>srcCb<span class="hl opt">, *</span>srcCr<span class="hl opt">;</span>
	<span class="hl kwb">unsigned char</span> <span class="hl opt">*</span>dstY<span class="hl opt">, *</span>srcY<span class="hl opt">;</span>

	<span class="hl kwb">size_t</span> dstSize <span class="hl opt">= (</span>th <span class="hl opt">*</span> tw<span class="hl opt">) + ((</span>th <span class="hl opt">/</span> <span class="hl num">2</span><span class="hl opt">) *</span> tw<span class="hl opt">);</span>
	destination<span class="hl opt">-&gt;</span><span class="hl kwd">resize</span><span class="hl opt">(</span>dstSize<span class="hl opt">);</span>
	<span class="hl kwb">unsigned char</span> <span class="hl opt">*</span>dst <span class="hl opt">=</span> destination<span class="hl opt">-&gt;</span><span class="hl kwd">data</span><span class="hl opt">();</span>
	<span class="hl kwb">unsigned char</span> <span class="hl opt">*</span>dstC <span class="hl opt">=</span> dst <span class="hl opt">+</span> th <span class="hl opt">*</span> tw<span class="hl opt">;</span>

	<span class="hl kwa">for</span> <span class="hl opt">(</span><span class="hl kwb">unsigned int</span> y <span class="hl opt">=</span> <span class="hl num">0</span><span class="hl opt">;</span> y <span class="hl opt">&lt;</span> th<span class="hl opt">;</span> y <span class="hl opt">+=</span> <span class="hl num">2</span><span class="hl opt">) {</span>
		<span class="hl kwb">unsigned int</span> sourceY <span class="hl opt">= (</span>sh <span class="hl opt">*</span> y <span class="hl opt">+</span> th <span class="hl opt">/</span> <span class="hl num">2</span><span class="hl opt">) /</span> th<span class="hl opt">;</span>

		dstY <span class="hl opt">=</span> dst <span class="hl opt">+</span> y <span class="hl opt">*</span> tw<span class="hl opt">;</span>
		srcY <span class="hl opt">=</span> src <span class="hl opt">+</span> sw <span class="hl opt">*</span> sourceY<span class="hl opt">;</span>
		srcCb <span class="hl opt">=</span> srcC <span class="hl opt">+ (</span>sourceY <span class="hl opt">/</span> <span class="hl num">2</span><span class="hl opt">) *</span> sw <span class="hl opt">+</span> <span class="hl num">0</span><span class="hl opt">;</span>
		srcCr <span class="hl opt">=</span> srcC <span class="hl opt">+ (</span>sourceY <span class="hl opt">/</span> <span class="hl num">2</span><span class="hl opt">) *</span> sw <span class="hl opt">+</span> <span class="hl num">1</span><span class="hl opt">;</span>

		<span class="hl kwa">for</span> <span class="hl opt">(</span><span class="hl kwb">unsigned int</span> x <span class="hl opt">=</span> <span class="hl num">0</span><span class="hl opt">;</span> x <span class="hl opt">&lt;</span> tw<span class="hl opt">;</span> x <span class="hl opt">+=</span> <span class="hl num">2</span><span class="hl opt">) {</span>
			<span class="hl kwb">unsigned int</span> sourceX <span class="hl opt">= (</span>sw <span class="hl opt">*</span> x <span class="hl opt">+</span> tw <span class="hl opt">/</span> <span class="hl num">2</span><span class="hl opt">) /</span> tw<span class="hl opt">;</span>

			dstY<span class="hl opt">[</span>x<span class="hl opt">] =</span> srcY<span class="hl opt">[</span>sourceX<span class="hl opt">];</span>
			dstY<span class="hl opt">[</span>tw <span class="hl opt">+</span> x<span class="hl opt">] =</span> srcY<span class="hl opt">[</span>sw <span class="hl opt">+</span> sourceX<span class="hl opt">];</span>
			dstY<span class="hl opt">[</span>x <span class="hl opt">+</span> <span class="hl num">1</span><span class="hl opt">] =</span> srcY<span class="hl opt">[</span>sourceX <span class="hl opt">+</span> <span class="hl num">1</span><span class="hl opt">];</span>
			dstY<span class="hl opt">[</span>tw <span class="hl opt">+</span> x <span class="hl opt">+</span> <span class="hl num">1</span><span class="hl opt">] =</span> srcY<span class="hl opt">[</span>sw <span class="hl opt">+</span> sourceX <span class="hl opt">+</span> <span class="hl num">1</span><span class="hl opt">];</span>

			dstC<span class="hl opt">[(</span>y <span class="hl opt">/</span> <span class="hl num">2</span><span class="hl opt">) *</span> tw <span class="hl opt">+</span> x <span class="hl opt">+</span> <span class="hl num">0</span><span class="hl opt">] =</span> srcCb<span class="hl opt">[(</span>sourceX <span class="hl opt">/</span> <span class="hl num">2</span><span class="hl opt">) *</span> <span class="hl num">2</span><span class="hl opt">];</span>
			dstC<span class="hl opt">[(</span>y <span class="hl opt">/</span> <span class="hl num">2</span><span class="hl opt">) *</span> tw <span class="hl opt">+</span> x <span class="hl opt">+</span> <span class="hl num">1</span><span class="hl opt">] =</span> srcCr<span class="hl opt">[(</span>sourceX <span class="hl opt">/</span> <span class="hl num">2</span><span class="hl opt">) *</span> <span class="hl num">2</span><span class="hl opt">];</span>
		<span class="hl opt">}</span>
	<span class="hl opt">}</span>
<span class="hl opt">}</span>
</code></pre></td></tr></table>
</div> <!-- class=content -->
<div class='footer'>generated by <a href='https://git.zx2c4.com/cgit/about/'>cgit v1.2.1</a> (<a href='https://git-scm.com/'>git 2.18.0</a>) at 2025-03-05 20:20:54 +0000</div>
</div> <!-- id=cgit -->
</body>
</html>