tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

lcevcdec.h (859B)


      1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* vim:set ts=2 sw=2 sts=2 et cindent: */
      3 /* This Source Code Form is subject to the terms of the Mozilla Public
      4 * License, v. 2.0. If a copy of the MPL was not distributed with this
      5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 /* Stubs for lcevcdec.{c,h} */
      8 #ifndef AVCODEC_LCEVCDEC_H
      9 #define AVCODEC_LCEVCDEC_H
     10 
     11 #include "config_components.h"
     12 
     13 #include <stdint.h>
     14 typedef uintptr_t LCEVC_DecoderHandle;
     15 
     16 typedef struct FFLCEVCContext {
     17    LCEVC_DecoderHandle decoder;
     18    int initialized;
     19 } FFLCEVCContext;
     20 
     21 struct AVFrame;
     22 
     23 static int ff_lcevc_alloc(FFLCEVCContext **plcevc) {
     24    return 0;
     25 }
     26 
     27 static int ff_lcevc_process(void *logctx, struct AVFrame *frame) {
     28    return 0;
     29 }
     30 
     31 static void ff_lcevc_unref(void *opaque) {}
     32 
     33 #endif /* AVCODEC_LCEVCDEC_H */