~rsalveti/qtubuntu-camera/upstream-bump

« back to all changes in this revision

Viewing changes to unittests/aalvideodeviceselectorcontrol/aalimageencodercontrol.cpp

  • Committer: CI bot
  • Author(s): Jim Hodapp
  • Date: 2014-11-05 01:31:18 UTC
  • mfrom: (119.1.2 qtubuntu-camera)
  • Revision ID: ps-jenkins@lists.canonical.com-20141105013118-47z5r3a3a4wp3bkz
Add thumbnail size selection support. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
{
71
71
}
72
72
 
73
 
void AalImageEncoderControl::setPictureSizeCb(void *ctx, int width, int height)
74
 
{
75
 
    Q_UNUSED(ctx);
76
 
    Q_UNUSED(width);
77
 
    Q_UNUSED(height);
78
 
}
79
 
 
80
 
void AalImageEncoderControl::setPictureSize(int width, int height)
 
73
void AalImageEncoderControl::getPictureSizeCb(void *ctx, int width, int height)
 
74
{
 
75
    Q_UNUSED(ctx);
 
76
    Q_UNUSED(width);
 
77
    Q_UNUSED(height);
 
78
}
 
79
 
 
80
void AalImageEncoderControl::getPictureSize(int width, int height)
 
81
{
 
82
    Q_UNUSED(width);
 
83
    Q_UNUSED(height);
 
84
}
 
85
 
 
86
void AalImageEncoderControl::getThumbnailSizeCb(void *ctx, int width, int height)
 
87
{
 
88
    Q_UNUSED(ctx);
 
89
    Q_UNUSED(width);
 
90
    Q_UNUSED(height);
 
91
}
 
92
 
 
93
void AalImageEncoderControl::getThumbnailSize(int width, int height)
81
94
{
82
95
    Q_UNUSED(width);
83
96
    Q_UNUSED(height);