Changeset 26716258739260ba9c3ffbe0d1e78509635abda2
- Timestamp:
- 06/05/08 15:31:02
(3 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1212672662 +0200
- git-parent:
[ae2b7693af07621c2b3d7cf22c9acb242cb224d8]
- git-author:
- Rafaël Carré <funman@videolan.org> 1212672662 +0200
- Message:
Don't workaround unknown bugs in external libraries
Better comment them fully, if you are too lazy to report upstream
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3a49e9f |
r2671625 |
|
| 964 | 964 | p_ff_pic->linesize[3] = 0; |
|---|
| 965 | 965 | |
|---|
| 966 | | if( p_ff_pic->reference != 0 || |
|---|
| 967 | | p_sys->i_codec_id == CODEC_ID_H264 /* Bug in libavcodec */ ) |
|---|
| | 966 | if( p_ff_pic->reference != 0 ) |
|---|
| 968 | 967 | { |
|---|
| 969 | 968 | p_dec->pf_picture_link( p_dec, p_pic ); |
|---|
| … | … | |
| 995 | 994 | p_ff_pic->data[3] = NULL; |
|---|
| 996 | 995 | |
|---|
| 997 | | if( p_ff_pic->reference != 0 || |
|---|
| 998 | | p_dec->p_sys->i_codec_id == CODEC_ID_H264 /* Bug in libavcodec */ ) |
|---|
| | 996 | if( p_ff_pic->reference != 0 ) |
|---|
| 999 | 997 | { |
|---|
| 1000 | 998 | p_dec->pf_picture_unlink( p_dec, p_pic ); |
|---|