Give the default media size a 4:3 aspect ratio. This will make the tutorial look...
authorXavi Artigas <xartigas@fluendo.com>
Fri, 19 Oct 2012 12:05:41 +0000 (14:05 +0200)
committerXavi Artigas <xartigas@fluendo.com>
Fri, 19 Oct 2012 12:05:41 +0000 (14:05 +0200)
gst-sdk/tutorials/android-tutorial-3/src/com/gst_sdk_tutorials/tutorial_3/GStreamerSurfaceView.java

index 8b0ecfc..f338d42 100644 (file)
@@ -8,8 +8,8 @@ import android.view.View;
 
 // A simple SurfaceView whose width and height is set from the outside
 public class GStreamerSurfaceView extends SurfaceView {
-    public int media_width = 100;  // Default values, only really meaningful for the layout editor in Eclipse
-    public int media_height = 100;
+    public int media_width = 320;  // Default values, only really meaningful for the layout editor in Eclipse
+    public int media_height = 240;
 
     // Mandatory constructors, they do not do much
     public GStreamerSurfaceView(Context context, AttributeSet attrs,