Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: third_party/ffmpeg/include/libavcodec/vdpau.h

Issue 56129: Update public FFmpeg header files from r16647 to r18286. (Closed)
Patch Set: Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * The Video Decode and Presentation API for UNIX (VDPAU) is used for 2 * The Video Decode and Presentation API for UNIX (VDPAU) is used for
3 * hardware-accelerated decoding of MPEG-1/2, H.264 and VC-1. 3 * hardware-accelerated decoding of MPEG-1/2, H.264 and VC-1.
4 * 4 *
5 * Copyright (C) 2008 NVIDIA 5 * Copyright (C) 2008 NVIDIA
6 * 6 *
7 * This file is part of FFmpeg. 7 * This file is part of FFmpeg.
8 * 8 *
9 * FFmpeg is free software; you can redistribute it and/or 9 * FFmpeg is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public 10 * modify it under the terms of the GNU Lesser General Public
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 * picture parameter, bitstream information etc which are passed 63 * picture parameter, bitstream information etc which are passed
64 * between the FFmpeg decoder and its clients. 64 * between the FFmpeg decoder and its clients.
65 */ 65 */
66 struct vdpau_render_state { 66 struct vdpau_render_state {
67 VdpVideoSurface surface; ///< Used as rendered surface, never changed. 67 VdpVideoSurface surface; ///< Used as rendered surface, never changed.
68 68
69 int state; ///< Holds FF_VDPAU_STATE_* values. 69 int state; ///< Holds FF_VDPAU_STATE_* values.
70 70
71 /** picture parameter information for all supported codecs */ 71 /** picture parameter information for all supported codecs */
72 union VdpPictureInfo { 72 union VdpPictureInfo {
73 VdpPictureInfoH264 h264;
73 VdpPictureInfoMPEG1Or2 mpeg; 74 VdpPictureInfoMPEG1Or2 mpeg;
74 VdpPictureInfoH264 h264; 75 VdpPictureInfoVC1 vc1;
75 } info; 76 } info;
76 77
77 /** Describe size/location of the compressed video data. */ 78 /** Describe size/location of the compressed video data. */
78 int bitstream_buffers_allocated; 79 int bitstream_buffers_allocated;
79 int bitstream_buffers_used; 80 int bitstream_buffers_used;
80 VdpBitstreamBuffer *bitstream_buffers; 81 VdpBitstreamBuffer *bitstream_buffers;
81 }; 82 };
82 83
83 /* @}*/ 84 /* @}*/
84 85
85 #endif /* AVCODEC_VDPAU_H */ 86 #endif /* AVCODEC_VDPAU_H */
OLDNEW
« no previous file with comments | « third_party/ffmpeg/include/libavcodec/opt.h ('k') | third_party/ffmpeg/include/libavcodec/xvmc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698