By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1273
Collapse All | Expand All

(-)trinity-k9copy/k9author/k9avidecode.cpp.k9author (-1 / +8 lines)
Lines 119-124 Link Here
119
    m_opened=false;
119
    m_opened=false;
120
120
121
    glibref++;
121
    glibref++;
122
    
123
    m_FormatCtx = NULL;
124
    m_CodecCtx = NULL;
125
    m_Codec = NULL;
126
    m_Frame = NULL;
127
    m_FrameRGB = NULL;
128
    m_buffer = NULL;
122
}
129
}
123
130
124
131
Lines 148-154 Link Here
148
    // Open video file
155
    // Open video file
149
    if (
156
    if (
150
#       if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(53, 2, 0)
157
#       if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(53, 2, 0)
151
        avformat_open_input(&m_FormatCtx, _fileName.utf8(), 0, 0)!=0
158
        avformat_open_input(&m_FormatCtx, _fileName.utf8(), NULL, NULL)!=0
152
#       else
159
#       else
153
        av_open_input_file(&m_FormatCtx, _fileName.utf8(), NULL, 0, NULL)!=0
160
        av_open_input_file(&m_FormatCtx, _fileName.utf8(), NULL, 0, NULL)!=0
154
#       endif
161
#       endif

Return to bug 1273