aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/vda.h
diff options
context:
space:
mode:
authorSebastien Zwickert <dilaroga@free.fr>2012-01-08 20:22:12 +0100
committerSebastien Zwickert <dilaroga@free.fr>2012-01-08 20:22:12 +0100
commit186980bf0f5e890295b6dc6b939084e3ebcf0dde (patch)
treea9ff896b5c56026f0420521473e1684bfdc62e85 /libavcodec/vda.h
parente953b8b7be7358b6dea51ebbc7cbf75d6c5cf786 (diff)
downloadandroid_external_ffmpeg-186980bf0f5e890295b6dc6b939084e3ebcf0dde.tar.gz
android_external_ffmpeg-186980bf0f5e890295b6dc6b939084e3ebcf0dde.tar.bz2
android_external_ffmpeg-186980bf0f5e890295b6dc6b939084e3ebcf0dde.zip
vda: cosmetic.
Diffstat (limited to 'libavcodec/vda.h')
-rw-r--r--libavcodec/vda.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/libavcodec/vda.h b/libavcodec/vda.h
index 7d043c7e30..6e9de9cd0a 100644
--- a/libavcodec/vda.h
+++ b/libavcodec/vda.h
@@ -61,7 +61,6 @@ typedef struct {
* - decoding: Set/Unset by libavcodec.
*/
struct vda_frame *next_frame;
-
} vda_frame;
/**
@@ -152,18 +151,18 @@ struct vda_context {
int ref_size;
};
-/** Creates the video decoder. */
+/** Create the video decoder. */
int ff_vda_create_decoder(struct vda_context *vda_ctx,
uint8_t *extradata,
int extradata_size);
-/** Destroys the video decoder. */
+/** Destroy the video decoder. */
int ff_vda_destroy_decoder(struct vda_context *vda_ctx);
-/** Returns the top frame of the queue. */
+/** Return the top frame of the queue. */
vda_frame *ff_vda_queue_pop(struct vda_context *vda_ctx);
-/** Releases the given frame. */
+/** Release the given frame. */
void ff_vda_release_vda_frame(vda_frame *frame);
#endif /* AVCODEC_VDA_H */