1. 16 Jan, 2014 1 commit
  2. 14 Jan, 2014 3 commits
  3. 06 Jan, 2014 1 commit
  4. 30 Dec, 2013 1 commit
  5. 26 Dec, 2013 2 commits
  6. 20 Dec, 2013 1 commit
  7. 17 Dec, 2013 2 commits
  8. 13 Dec, 2013 1 commit
  9. 07 Dec, 2013 1 commit
  10. 04 Dec, 2013 1 commit
  11. 19 Nov, 2013 1 commit
  12. 18 Nov, 2013 1 commit
  13. 17 Nov, 2013 2 commits
  14. 16 Nov, 2013 1 commit
  15. 14 Nov, 2013 1 commit
    • Roman Donchenko's avatar
      Fix building with FFmpeg 0.8. · 3b7acf26
      Roman Donchenko authored
      avformat_find_stream_info was introduced in Libav avformat 53.3,
      but it was only merged to FFmpeg in avformat 53.6.
      
      In Libav avformat 53.3-53.5 av_find_stream_info is not removed
      (only deprecated), so this shouldn't break building with that.
      3b7acf26
  16. 12 Nov, 2013 1 commit
  17. 11 Nov, 2013 2 commits
  18. 10 Nov, 2013 1 commit
  19. 06 Nov, 2013 2 commits
  20. 29 Oct, 2013 1 commit
    • Roman Donchenko's avatar
      VideoCapture: copy the captured frame, to avoid dangling Mats · d6a7a6d5
      Roman Donchenko authored
      Previously, VideoCapture::retrieve would return a Mat that referenced
      the internal IplImage. Since the latter is rewritten every time a
      frame is captured, it means that if the user captures two frames in a row,
      the first frame would reference nothing. Similar if a user captures a frame,
      then destroys the VideoCapture instance.
      
      Note that the other branch of the if isn't affected, since flip allocates
      a new Mat.
      d6a7a6d5
  21. 25 Oct, 2013 1 commit
  22. 23 Oct, 2013 1 commit
  23. 17 Oct, 2013 1 commit
  24. 08 Oct, 2013 1 commit
  25. 04 Oct, 2013 2 commits
  26. 03 Oct, 2013 2 commits
  27. 30 Sep, 2013 1 commit
    • Tony's avatar
      Change true for TRUE · 0d06b1dc
      Tony authored
      The second parameter of gtk_widget_set_realized is of type gboolean
      (gint). This is to ensure compatibility on alternative compilers and
      platforms.
      0d06b1dc
  28. 27 Sep, 2013 1 commit
  29. 26 Sep, 2013 2 commits
    • Tony's avatar
      Replace obsolete Gtk symbols · 97fc1e10
      Tony authored
      This update replaces depreciated Gtk1.x symbols with Gtk2.x symbols in
      preparation for adding Gtk3 support. These edits aim to be fully
      compatible with Gtk2.x, allowing backward compatibility.
      
      The following symbols have been replaced in this commit:
      
      Gtk symbols that have been moved to the Gdk library:
       - GtkType -> Gtype
       - GTK_CHECK_CAST -> G_TYPE_CHECK_INSTANCE_CAST
       - GTK_CHECK_TYPE -> G_TYPE_CHECK_INSTANCE_TYPE
       - gtk_signal_connect -> g_signal_connect
       - GTK_SIGNAL_FUNC -> G_CALLBACK
       - gtk_type_class -> g_type_class_peek
       - gtk_type_new-> g_object_new
       - GtkTypeInfo -> GtypeInfo (Not required for
         g_type_register_static_simple)
       - gtk_type_unique -> g_type_register_static_simple
       - gdk_draw_image_rgb -> replaced by gdk_cairo_source_pixbuf
         NB: This requires porting to use cairo contexts and GdkPixbufs.
      
      The following gtk symbols are changed for their modern equivalent:
       - GTK_WIDGET_REALIZED -> gtk_widget_get_realized
       - GTK_OBJECT_FLAGS -> gtk_widget_set_realized
      
      Symbols without replacement:
       - gtk_range_set_update_policy -> No replacement; as default policy is
         set to continuous we can delete this line.
      97fc1e10
    • Fedor Morozov's avatar
      c9ace388
  30. 23 Sep, 2013 1 commit