Changeset 5266ede11c5f1a98e170b23eae90c194368cc08b
- Timestamp:
- 01/14/08 23:25:08
(8 months ago)
- Author:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr>
- git-committer:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1200349508 +0000
- git-parent:
[528f1c64eab458ec342e193ee6398f37817ba2ed]
- git-author:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1200349508 +0000
- Message:
python bindings: fix MediaDescriptor?.get_meta method
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r528f1c6 |
r5266ede |
|
| 181 | 181 | if( !PyArg_ParseTuple( args, "s", &psz_meta ) ) |
|---|
| 182 | 182 | return NULL; |
|---|
| 183 | | while( !meta_names[i_loop] ) |
|---|
| | 183 | while( meta_names[i_loop] ) |
|---|
| 184 | 184 | { |
|---|
| 185 | 185 | if( !strncmp(meta_names[i_loop], psz_meta, strlen(meta_names[i_loop])) ) |
|---|
| … | … | |
| 188 | 188 | break; |
|---|
| 189 | 189 | } |
|---|
| | 190 | i_loop++; |
|---|
| 190 | 191 | } |
|---|
| 191 | 192 | if( i_index < 0 ) |
|---|