Changeset 5718c8409cbdb188bd7344aab221412d1a7cfa43
- Timestamp:
- 01/12/08 20:02:12
(8 months ago)
- Author:
- Jean-Baptiste Kempf <jb@videolan.org>
- git-committer:
- Jean-Baptiste Kempf <jb@videolan.org> 1200164532 +0000
- git-parent:
[6a8456a649118364f84baf118821ec39d42eb7dc]
- git-author:
- Jean-Baptiste Kempf <jb@videolan.org> 1200164532 +0000
- Message:
Support for 8bit uncompressed in AVI files.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9c888ee |
r5718c84 |
|
| 102 | 102 | /* Packed YUV */ |
|---|
| 103 | 103 | case VLC_FOURCC('Y','U','Y','2'): |
|---|
| | 104 | case VLC_FOURCC('Y','8','0','0'): |
|---|
| 104 | 105 | case VLC_FOURCC('U','Y','V','Y'): |
|---|
| 105 | 106 | case VLC_FOURCC('H','D','Y','C'): |
|---|
| r0da9417 |
r5718c84 |
|
| 438 | 438 | case 9: |
|---|
| 439 | 439 | tk->i_codec = VLC_FOURCC( 'Y', 'V', 'U', '9' ); /* <- TODO check that */ |
|---|
| | 440 | break; |
|---|
| | 441 | case 8: |
|---|
| | 442 | tk->i_codec = VLC_FOURCC('Y','8','0','0'); |
|---|
| 440 | 443 | break; |
|---|
| 441 | 444 | } |
|---|
| re40d134 |
r5718c84 |
|
| 65 | 65 | switch( p_vout->render.i_chroma ) |
|---|
| 66 | 66 | { |
|---|
| | 67 | case VLC_FOURCC('Y','8','0','0'): |
|---|
| | 68 | p_vout->render.i_chroma = VLC_FOURCC('G','R','E','Y'); |
|---|
| 67 | 69 | case VLC_FOURCC('G','R','E','Y'): |
|---|
| 68 | 70 | switch( p_vout->output.i_chroma ) |
|---|