qmlfrontend/main.qml
author Pekka Ristola <pekkarr@protonmail.com>
Mon, 27 Jan 2025 19:08:05 +0100
changeset 16096 dbdb98dafd80
parent 16041 caba603f461f
permissions -rw-r--r--
Add support for ffmpeg 6.0 - Use the new send_frame/receive_packet API for encoding - Use the new channel layout API for audio - Fix audio recording - Copy codec parameters to the stream parameters - Set correct pts for audio frames - Read audio samples from file directly to the refcounted AVFrame buffer instead of the `g_pSamples` buffer - Use global AVPackets allocated with `av_packet_alloc` - Stop trying to write more audio frames when `WriteAudioFrame` fails with a negative error code - Fix segfault with `g_pContainer->url`. The field has to be allocated with `av_malloc` before writing to it. It's set to `NULL` by default. - Properly free allocations with `avcodec_free_context` and `avformat_free_context`
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16041
caba603f461f Allow to move camera by dragging mouse cursor over game field
unC0Rr
parents: 14164
diff changeset
     1
import QtQuick
caba603f461f Allow to move camera by dragging mouse cursor over game field
unC0Rr
parents: 14164
diff changeset
     2
import QtQuick.Controls
caba603f461f Allow to move camera by dragging mouse cursor over game field
unC0Rr
parents: 14164
diff changeset
     3
import QtQuick.Layouts
12854
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     4
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     5
ApplicationWindow {
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     6
  visible: true
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     7
  width: 640
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     8
  height: 480
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     9
  title: qsTr("Hello World")
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    10
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    11
  SwipeView {
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    12
    id: swipeView
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    13
    anchors.fill: parent
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    14
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    15
    Page1 {
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    16
    }
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    17
  }
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    18
}