summaryrefslogtreecommitdiff
path: root/apps/codecs/libwmavoice/avcodec.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libwmavoice/avcodec.h')
-rw-r--r--apps/codecs/libwmavoice/avcodec.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/codecs/libwmavoice/avcodec.h b/apps/codecs/libwmavoice/avcodec.h
index 9186bf52f3..db08ab3c5f 100644
--- a/apps/codecs/libwmavoice/avcodec.h
+++ b/apps/codecs/libwmavoice/avcodec.h
@@ -1114,7 +1114,7 @@ typedef struct AVCodecContext {
1114 * - encoding: MUST be set by user. 1114 * - encoding: MUST be set by user.
1115 * - decoding: Set by libavcodec. 1115 * - decoding: Set by libavcodec.
1116 */ 1116 */
1117 AVRational time_base; 1117 //AVRational time_base;
1118 1118
1119 /* video only */ 1119 /* video only */
1120 /** 1120 /**
@@ -1142,7 +1142,7 @@ typedef struct AVCodecContext {
1142 * - encoding: Set by user. 1142 * - encoding: Set by user.
1143 * - decoding: Set by user if known, overridden by libavcodec if known 1143 * - decoding: Set by user if known, overridden by libavcodec if known
1144 */ 1144 */
1145 enum PixelFormat pix_fmt; 1145 //enum PixelFormat pix_fmt;
1146 1146
1147 /** 1147 /**
1148 * Frame rate emulation. If not zero, the lower layer (i.e. format handler) 1148 * Frame rate emulation. If not zero, the lower layer (i.e. format handler)
@@ -1693,7 +1693,7 @@ typedef struct AVCodecContext {
1693 * - encoding: Set by user. 1693 * - encoding: Set by user.
1694 * - decoding: Set by libavcodec. 1694 * - decoding: Set by libavcodec.
1695 */ 1695 */
1696 AVRational sample_aspect_ratio; 1696 //AVRational sample_aspect_ratio;
1697 1697
1698 /** 1698 /**
1699 * the picture in the bitstream 1699 * the picture in the bitstream
@@ -2738,8 +2738,8 @@ typedef struct AVCodec {
2738 * Will be called when seeking 2738 * Will be called when seeking
2739 */ 2739 */
2740 void (*flush)(AVCodecContext *); 2740 void (*flush)(AVCodecContext *);
2741 const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0} 2741 //const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0}
2742 const enum PixelFormat *pix_fmts; ///< array of supported pixel formats, or NULL if unknown, array is terminated by -1 2742 //const enum PixelFormat *pix_fmts; ///< array of supported pixel formats, or NULL if unknown, array is terminated by -1
2743 /** 2743 /**
2744 * Descriptive name for the codec, meant to be more human readable than name. 2744 * Descriptive name for the codec, meant to be more human readable than name.
2745 * You should use the NULL_IF_CONFIG_SMALL() macro to define it. 2745 * You should use the NULL_IF_CONFIG_SMALL() macro to define it.
@@ -2781,7 +2781,7 @@ typedef struct AVHWAccel {
2781 * 2781 *
2782 * Only hardware accelerated formats are supported here. 2782 * Only hardware accelerated formats are supported here.
2783 */ 2783 */
2784 enum PixelFormat pix_fmt; 2784 //enum PixelFormat pix_fmt;
2785 2785
2786 /** 2786 /**
2787 * Hardware accelerated codec capabilities. 2787 * Hardware accelerated codec capabilities.
@@ -3976,7 +3976,7 @@ attribute_deprecated int av_parse_video_frame_size(int *width_ptr, int *height_p
3976 * 3976 *
3977 * @deprecated Deprecated in favor of av_parse_video_rate(). 3977 * @deprecated Deprecated in favor of av_parse_video_rate().
3978 */ 3978 */
3979attribute_deprecated int av_parse_video_frame_rate(AVRational *frame_rate, const char *str); 3979//attribute_deprecated int av_parse_video_frame_rate(AVRational *frame_rate, const char *str);
3980#endif 3980#endif
3981 3981
3982/** 3982/**