validate: Start also testing jpeg encoding

This commit is contained in:
Thibault Saunier 2016-07-29 15:48:28 -04:00
parent 8162811bce
commit e1f6b9fefb
2 changed files with 6 additions and 3 deletions

View file

@ -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

View file

@ -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")
]