Changeset 4c9f239846da7829947ec63cd6c87749dac6410b
- Timestamp:
- 11/27/02 16:18:24
(6 years ago)
- Author:
- Sam Hocevar <sam@videolan.org>
- git-committer:
- Sam Hocevar <sam@videolan.org> 1038410304 +0000
- git-parent:
[e042941f56bfadbe32d8e2014292d61a1b4b5a4d]
- git-author:
- Sam Hocevar <sam@videolan.org> 1038410304 +0000
- Message:
- ./modules/codec/cinepak/cinepak.c: fixed V1-encoded blocks luma loading.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r422dbd4 |
r4c9f239 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 1999-2001 VideoLAN |
|---|
| 5 | | * $Id: cinepak.c,v 1.7 2002/11/27 13:17:27 fenrir Exp $ |
|---|
| | 5 | * $Id: cinepak.c,v 1.8 2002/11/27 15:18:24 sam Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Laurent Aimar <fenrir@via.ecp.fr> |
|---|
| … | … | |
| 393 | 393 | { |
|---|
| 394 | 394 | PIX_SET_Y( 2*j + 0, 2*i + 0, |
|---|
| 395 | | p_context->codebook_v1[i_strip][i_index].i_y[0] ); |
|---|
| | 395 | p_context->codebook_v1[i_strip][i_index].i_y[2*i+j] ); |
|---|
| 396 | 396 | PIX_SET_Y( 2*j + 1, 2*i + 0, |
|---|
| 397 | | p_context->codebook_v1[i_strip][i_index].i_y[1] ); |
|---|
| | 397 | p_context->codebook_v1[i_strip][i_index].i_y[2*i+j] ); |
|---|
| 398 | 398 | PIX_SET_Y( 2*j + 0, 2*i + 1, |
|---|
| 399 | | p_context->codebook_v1[i_strip][i_index].i_y[2] ); |
|---|
| | 399 | p_context->codebook_v1[i_strip][i_index].i_y[2*i+j] ); |
|---|
| 400 | 400 | PIX_SET_Y( 2*j + 1, 2*i + 1, |
|---|
| 401 | | p_context->codebook_v1[i_strip][i_index].i_y[3] ); |
|---|
| | 401 | p_context->codebook_v1[i_strip][i_index].i_y[2*i+j] ); |
|---|
| 402 | 402 | |
|---|
| 403 | 403 | PIX_SET_UV( 1,p_dst_u, j, i, |
|---|