/core/externals/update-engine/externals/gdata-objectivec-client/Source/Clients/YouTube/GDataYouTubeMediaElements.h
http://macfuse.googlecode.com/ · C++ Header · 88 lines · 41 code · 17 blank · 30 comment · 1 complexity · 642b895cc1a35e7602d083324b35c9ab MD5 · raw file
- /* Copyright (c) 2008 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- //
- // GDataYouTubeMediaElements.h
- //
- #if !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_YOUTUBE_SERVICE
- #import "GDataObject.h"
- #undef _EXTERN
- #undef _INITIALIZE_AS
- #ifdef GDATAYOUTUBEMEDIAELEMENTS_DEFINE_GLOBALS
- #define _EXTERN
- #define _INITIALIZE_AS(x) =x
- #else
- #define _EXTERN GDATA_EXTERN
- #define _INITIALIZE_AS(x)
- #endif
- _EXTERN const int kGDataYouTubeMediaContentFormatRTSPStream _INITIALIZE_AS(1);
- _EXTERN const int kGDataYouTubeMediaContentFormatHTTPURL _INITIALIZE_AS(5);
- _EXTERN const int kGDataYouTubeMediaContentFormatMobileRTSPStream _INITIALIZE_AS(6);
- #import "GDataMedia.h"
- #import "GDataYouTubeElements.h"
- // media content with YouTube's addition of an integer format attribute,
- // like yt:format="1"
- //
- // Note: iPhone seems to support playback of RTSP streams (formats 1 and 6)
- @interface GDataMediaContent (YouTubeExtensions)
- - (NSNumber *)youTubeFormatNumber;
- - (void)setYouTubeFormatNumber:(NSNumber *)num;
- @end
- // media rating with YouTube's addition of a country attribute,
- // like yt:country="USA"
- @interface GDataMediaRating (YouTubeExtensions)
- - (NSString *)youTubeCountry;
- - (void)setYouTubeCountry:(NSString *)str;
- @end
- // media credit with YouTube's addition of a type attribute,
- // like yt:type="partner" (v2.0)
- @interface GDataMediaCredit (YouTubeExtensions)
- - (NSString *)youTubeCreditType;
- - (void)setYouTubeCreditType:(NSString *)str;
- @end
- // a media group that uses the YouTube media content elements instead
- // of the generic media content elements
- @interface GDataYouTubeMediaGroup : GDataMediaGroup
- - (NSNumber *)duration; // int, in seconds
- - (void)setDuration:(NSNumber *)num;
- - (BOOL)isPrivate;
- - (void)setIsPrivate:(BOOL)flag;
- // videoID available in v2.0
- - (NSString *)videoID;
- - (void)setVideoID:(NSString *)str;
- // uploadedDate available in v2.0
- - (GDataDateTime *)uploadedDate;
- - (void)setUploadedDate:(GDataDateTime *)dateTime;
- // convenience accessors
- - (GDataMediaThumbnail *)highQualityThumbnail;
- - (GDataMediaContent *)mediaContentWithFormatNumber:(NSInteger)formatNumber;
- @end
- #endif // !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_YOUTUBE_SERVICE