mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
validate: Start also testing jpeg encoding
This commit is contained in:
parent
8162811bce
commit
e1f6b9fefb
2 changed files with 6 additions and 3 deletions
|
@ -1068,7 +1068,7 @@ ges_pipeline_get_mode (GESPipeline * pipeline)
|
|||
* creating a #GESPipeline is #GES_PIPELINE_MODE_PREVIEW.
|
||||
*
|
||||
* Note: The @pipeline will be set to #GST_STATE_NULL during this call due to
|
||||
* the internal changes that happen. The caller will therefore have to
|
||||
* the internal changes that happen. The caller will therefore have to
|
||||
* set the @pipeline to the requested state after calling this method.
|
||||
*
|
||||
* Returns: %TRUE if the mode was properly set, else %FALSE.
|
||||
|
@ -1228,7 +1228,7 @@ ges_pipeline_get_thumbnail (GESPipeline * self, GstCaps * caps)
|
|||
* something wrong happens or %NULL
|
||||
*
|
||||
* Saves the current frame to the specified @location.
|
||||
*
|
||||
*
|
||||
* Returns: %TRUE if the thumbnail was properly save, else %FALSE.
|
||||
*/
|
||||
gboolean
|
||||
|
|
|
@ -40,8 +40,11 @@ GES_ENCODING_TARGET_COMBINATIONS = [
|
|||
MediaFormatCombination("webm", "opus", "vp8"),
|
||||
MediaFormatCombination("mp4", "aac", "h264"),
|
||||
MediaFormatCombination("mp4", "ac3", "h264"),
|
||||
MediaFormatCombination("quicktime", "aac", "jpeg"),
|
||||
MediaFormatCombination("mkv", "opus", "h264"),
|
||||
MediaFormatCombination("mkv", "vorbis", "h264")
|
||||
MediaFormatCombination("mkv", "vorbis", "h264"),
|
||||
MediaFormatCombination("mkv", "opus", "jpeg"),
|
||||
MediaFormatCombination("mkv", "vorbis", "jpeg")
|
||||
]
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue