<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>i.MX ProcessorsのトピックRe: Gplay: Video screen is not getting resized</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Gplay-Video-screen-is-not-getting-resized/m-p/189240#M9282</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please, take a look on fsl_player_ret_val fsl_player_full_screen(fsl_player_handle handle) in order to determinate value of pproperty-&amp;gt;bfullscreen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe gplay is configured for fullscreen by default.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Sep 2012 17:35:52 GMT</pubDate>
    <dc:creator>daiane_angolini</dc:creator>
    <dc:date>2012-09-11T17:35:52Z</dc:date>
    <item>
      <title>Gplay: Video screen is not getting resized</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Gplay-Video-screen-is-not-getting-resized/m-p/189239#M9281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to change the gplay(gst-fsl-plugin-2.0.3) video screen size with 700x300. I have modified the file mfw_gplay_core.c with the below changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define DEFAULT_OFFSET_X 65&lt;/P&gt;&lt;P&gt;#define DEFAULT_OFFSET_Y 100&lt;/P&gt;&lt;P&gt;#define DEFAULT_DISPLAY_WIDTH 700&lt;/P&gt;&lt;P&gt;#define DEFAULT_DISPLAY_HEIGHT 300&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But these changes also not taking into the effect and the video screen size remains same. Could you kindly help in fixing this issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swamy&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2012 08:21:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Gplay-Video-screen-is-not-getting-resized/m-p/189239#M9281</guid>
      <dc:creator>Swamy</dc:creator>
      <dc:date>2012-09-11T08:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Gplay: Video screen is not getting resized</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Gplay-Video-screen-is-not-getting-resized/m-p/189240#M9282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please, take a look on fsl_player_ret_val fsl_player_full_screen(fsl_player_handle handle) in order to determinate value of pproperty-&amp;gt;bfullscreen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe gplay is configured for fullscreen by default.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2012 17:35:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Gplay-Video-screen-is-not-getting-resized/m-p/189240#M9282</guid>
      <dc:creator>daiane_angolini</dc:creator>
      <dc:date>2012-09-11T17:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Gplay: Video screen is not getting resized</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Gplay-Video-screen-is-not-getting-resized/m-p/189241#M9283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;Strangely fsl_player_full_screen() function is not getting called from anywhere. I even added forcefully the following parameters under the function fsl_player_play(), but still no change in the display area. It is still occupying the entire display resolution. Please suggest.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;pproperty-&amp;gt;display_parameter.offsetx = DEFAULT_OFFSET_X; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;pproperty-&amp;gt;display_parameter.offsety = DEFAULT_OFFSET_Y; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;pproperty-&amp;gt;display_parameter.disp_width = DEFAULT_DISPLAY_WIDTH; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;pproperty-&amp;gt;display_parameter.disp_height = DEFAULT_DISPLAY_HEIGHT; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;pproperty-&amp;gt;bfullscreen=0; //added&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pplayer-&amp;gt;klass-&amp;gt;resize(pplayer, pproperty-&amp;gt;display_parameter); &lt;BR /&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;Swamy&lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 09:41:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Gplay-Video-screen-is-not-getting-resized/m-p/189241#M9283</guid>
      <dc:creator>Swamy</dc:creator>
      <dc:date>2012-09-12T09:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: Gplay: Video screen is not getting resized</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Gplay-Video-screen-is-not-getting-resized/m-p/189242#M9284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you, please, let me know the status of this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think&amp;nbsp; missed the notification of your update.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Dec 2013 18:25:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Gplay-Video-screen-is-not-getting-resized/m-p/189242#M9284</guid>
      <dc:creator>daiane_angolini</dc:creator>
      <dc:date>2013-12-19T18:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: Gplay: Video screen is not getting resized</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Gplay-Video-screen-is-not-getting-resized/m-p/189243#M9285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mahadeva, what is the progress of your issue? If your issue had been resolved please click Correct Answer/Helpful Answer. We would liek to close your DI if no response from you in 3 days.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Yixing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Dec 2013 08:34:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Gplay-Video-screen-is-not-getting-resized/m-p/189243#M9285</guid>
      <dc:creator>YixingKong</dc:creator>
      <dc:date>2013-12-30T08:34:06Z</dc:date>
    </item>
  </channel>
</rss>

