diff options
author | Austin Yuan <shengquan.yuan@intel.com> | 2008-05-07 19:11:25 -0400 |
---|---|---|
committer | Austin Yuan <shengquan.yuan@intel.com> | 2008-05-07 19:11:25 -0400 |
commit | 634da28cd0481820fa41293a0a94762b9d245118 (patch) | |
tree | 3b11bd04258fe2caf8061db9e7a498abfaa86089 | |
parent | 1ccd01cd667e2c91a4802022e41a583d91d8840c (diff) | |
download | libva-634da28cd0481820fa41293a0a94762b9d245118.tar.gz |
Typo correction
-rwxr-xr-x | src/va.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1690,7 +1690,7 @@ Mostly to demonstrate program flow with no error handling ... int max_num_profiles, max_num_entrypoints, max_num_attribs; max_num_profiles = vaMaxNumProfiles(dpy); max_num_entrypoints = vaMaxNumEntrypoints(dpy); - max_num_attribs = vaMaxNumAttributes(dpy); + max_num_attribs = vaMaxNumConfigAttributes(dpy); /* find out whether MPEG2 MP is supported */ VAProfile *profiles = malloc(sizeof(VAProfile)*max_num_profiles); @@ -1832,7 +1832,7 @@ Mostly to demonstrate program flow with no error handling ... int max_num_profiles, max_num_entrypoints, max_num_attribs; max_num_profiles = vaMaxNumProfiles(dpy); max_num_entrypoints = vaMaxNumEntrypoints(dpy); - max_num_attribs = vaMaxNumAttributes(dpy); + max_num_attribs = vaMaxNumConfigAttributes(dpy); /* find out whether H.264 BP encode is supported */ VAProfile *profiles = malloc(sizeof(VAProfile)*max_num_profiles); @@ -1847,7 +1847,7 @@ Mostly to demonstrate program flow with no error handling ... int num_entrypoints; vaQueryConfigEntrypoints(dpy, VAProfileH264Baseline, entrypoints, &num_entrypoints); - /* traverse "entrypoints" to see whether VLC is there */ + /* traverse "entrypoints" to see whether VAEntrypointEncodeES is there */ /* Assuming finding VAEntrypointEncodeES, find out the format and rate control mode for the source */ VAConfigAttrib attrib[2]; @@ -1863,7 +1863,7 @@ Mostly to demonstrate program flow with no error handling ... /* Found desired rate control mode, keep going */ VAConfigID config_id; - vaCreateConfig(dpy, VAProfileMPEG4Simple, VAEntrypointVLC, &attrib[0], 2, + vaCreateConfig(dpy, VAProfileH264Baseline, VAEntrypointEncodeES, &attrib[0], 2, &config_id); /* |