QTMovieCurrentSizeAttribute和QTMovieSizeDidChangeNotification替换

时间:2011-05-31 03:35:21

标签: quicktime qtkit

是否有人知道替换旧的QTMovieCurrentSizeAttributeQTMovieSizeDidChangeNotification任务的正确方法?我正在尝试清除旧的弃用代码。

我发现QTMovieNaturalSizeDidChangeNotification不能替代QTMovieSizeDidChangeNotification。同样,QTMovieNaturalSizeAttribute不是QTMovieCurrentSizeAttribute的替代品。 Natural Size指的是QTMovie的原始分辨率,而Current Size指的是显示QTMovie的分辨率(这也可能是电影的分辨率)正在解码,可以从本机调整大小)。例如,如果源是变形的或具有非方形像素,则NaturalCurrent Size s将不相同。在QuickTime 7 Player的Movie Inspector窗口中很容易看到差异。

尽管我可以说,QuickTime X允许多个视图进入同一个QTMovie,因此Current Size的概念需要被新的东西取代。 (也许Current Size功能已移至QTMovieView?或解码器查询?)任何人都可以向我推荐新方法的文档或示例代码吗?

已更新为显示NaturalCurrent ('Actual') Sizes的电影检查器窗口的任何示例代码都是理想的,而不使用已弃用的代码。到目前为止,这一直非常令人困惑。

1 个答案:

答案 0 :(得分:0)

这有用吗? http://opensource.apple.com/source/WebCore/WebCore-955.66/platform/graphics/mac/MediaPlayerPrivateQTKit.mm

IntSize MediaPlayerPrivate::naturalSize() const
{
    if (!metaDataAvailable())
        return IntSize();

    // In spite of the name of this method, return QTMovieNaturalSizeAttribute transformed by the 
    // initial movie scale because the spec says intrinsic size is:
    //
    //    ... the dimensions of the resource in CSS pixels after taking into account the resource's 
   //    dimensions, aspect ratio, clean aperture, resolution, and so forth, as defined for the 
   //    format used by the resource

    NSSize naturalSize = [[m_qtMovie.get() attributeForKey:QTMovieNaturalSizeAttribute] sizeValue];
    return IntSize(naturalSize.width * m_scaleFactor.width(), naturalSize.height * m_scaleFactor.height());
}