diff options
| author | Mohamed Tarek <mt@rockbox.org> | 2010-08-07 13:06:05 +0000 |
|---|---|---|
| committer | Mohamed Tarek <mt@rockbox.org> | 2010-08-07 13:06:05 +0000 |
| commit | fb26f52697f1bb215375b4acaa626ff36d8d4208 (patch) | |
| tree | 8007ecfc48b7a70a866c07fcf0918b9c8f0e57f3 /apps/codecs/libwmavoice/avcodec.h | |
| parent | e3a6610ae7d2dfa5e7a0393938bccec07baf5b75 (diff) | |
| download | rockbox-fb26f52697f1bb215375b4acaa626ff36d8d4208.zip rockbox-fb26f52697f1bb215375b4acaa626ff36d8d4208.tar.gz rockbox-fb26f52697f1bb215375b4acaa626ff36d8d4208.tar.bz2 rockbox-fb26f52697f1bb215375b4acaa626ff36d8d4208.tar.xz | |
Add missing files from ffmpeg, write a README.rockbox and a makefile.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27742 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwmavoice/avcodec.h')
| -rw-r--r-- | apps/codecs/libwmavoice/avcodec.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/codecs/libwmavoice/avcodec.h b/apps/codecs/libwmavoice/avcodec.h index 9186bf5..db08ab3 100644 --- a/apps/codecs/libwmavoice/avcodec.h +++ b/apps/codecs/libwmavoice/avcodec.h @@ -1114,7 +1114,7 @@ typedef struct AVCodecContext { * - encoding: MUST be set by user. * - decoding: Set by libavcodec. */ - AVRational time_base; + //AVRational time_base; /* video only */ /** @@ -1142,7 +1142,7 @@ typedef struct AVCodecContext { * - encoding: Set by user. * - decoding: Set by user if known, overridden by libavcodec if known */ - enum PixelFormat pix_fmt; + //enum PixelFormat pix_fmt; /** * Frame rate emulation. If not zero, the lower layer (i.e. format handler) @@ -1693,7 +1693,7 @@ typedef struct AVCodecContext { * - encoding: Set by user. * - decoding: Set by libavcodec. */ - AVRational sample_aspect_ratio; + //AVRational sample_aspect_ratio; /** * the picture in the bitstream @@ -2738,8 +2738,8 @@ typedef struct AVCodec { * Will be called when seeking */ void (*flush)(AVCodecContext *); - const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0} - const enum PixelFormat *pix_fmts; ///< array of supported pixel formats, or NULL if unknown, array is terminated by -1 + //const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0} + //const enum PixelFormat *pix_fmts; ///< array of supported pixel formats, or NULL if unknown, array is terminated by -1 /** * Descriptive name for the codec, meant to be more human readable than name. * You should use the NULL_IF_CONFIG_SMALL() macro to define it. @@ -2781,7 +2781,7 @@ typedef struct AVHWAccel { * * Only hardware accelerated formats are supported here. */ - enum PixelFormat pix_fmt; + //enum PixelFormat pix_fmt; /** * Hardware accelerated codec capabilities. @@ -3976,7 +3976,7 @@ attribute_deprecated int av_parse_video_frame_size(int *width_ptr, int *height_p * * @deprecated Deprecated in favor of av_parse_video_rate(). */ -attribute_deprecated int av_parse_video_frame_rate(AVRational *frame_rate, const char *str); +//attribute_deprecated int av_parse_video_frame_rate(AVRational *frame_rate, const char *str); #endif /** |